..er..

0x42 is 'B' and 0x4D is 'M' as in ANSI codes for these letters.

ie char s='B';

and

char sh=0x42; //0x42=66 (decimal)

are the same.

How you define them is up to you: #define, const char or just use the id in place.