uJava Examples:
uThe
char datatype can only represent a
single character or symbol, and may
be initialized as follows:
u// decimal equivalent of letter 'a' char myFirstChar = 97;
u// using a character
char mySecondChar = 'a';
u// octal equivalent of
letter 'a' char myThirdChar = '\141';
u// Unicode (Hex) value for
'a'
u char myFourthChar =
'\u0061' ;