Hi Ratul,
The
java compiler replaces all unicode characters with the ASCII alternative wherever possible. You can think of the unicode chars as escape codes. Therefore what actually gets compiled is the following lines:
char a = 'a';
char b = 'b';
char c = 'c';
And it all looks good to go!
Regards,
Manfred.