I'm trying to display this character:
Obviously I know I can display it simply by using "\uD83C\uDCA1" but I am creating a deck of cards and it would nearly impossible to display 2-Ace using this format without a really long comparison for all 52 cards. This is why I am trying to use the UTF-32 encoding for this character 0x0001F0A1 or 1f0a1 since the next card is just 0x0001F0A2 or 1f0a2. I have tried using Integer.parse() and Character.decode() however neither has worked for me to get the actual glyph.
EDIT: Just a small note, I am displaying this in a JOptionPane, I realize this isn't relevant, so I have the font set so its bigger and the user can actually see it...