im trying to store a utf char as following:
char utfChr1 = '\u1F6BF';
wich give me an invalid character constant error.
char utfChr2 = '\uE517';
works fine. I can set the char to FFFF and it works without compiler error. But anything over 65535 (10000) gives me that error. What can I do?