I'm trying to use some funky characters in my Java code.
Character c = new Character('🀀');
(If your web browser doesn't display the character, it's "1F000 🀀 MAHJONG TILE EAST WIND", as taken from here.
Java complains about 'invalid character constant'. What gives? I thought Java's Character supported Unicode.
Also, is there a way to initialize a Character by its Unicode value? Something like new Character('0x01F000')?