char c2='\ucafe';
char c3='\ucfe';
'\ucfe' is a invalid unicode , Unicode must consits of 4characters after \u
Each of the 4 characters must be valid hexadecimal number [0-9,a-f]
\uFFFG is invald, because FFFG is not unicode.
Hope this clears.
Thanks
Deepak