I am trying to draw random Nordic runes in a little Java game, but all I'm getting back is a square character.
public class MyComponent extends JComponent {
public void paintComponent(Graphics g) {
String s = "\u16A8";
g.drawString(s,50,50);
}
}
What the character should be displaying: https://en.wikipedia.org/wiki/Ansuz_(rune)
What it's actually displaying: ⃣
So what's going on here? Why isn't it displaying the unicode character?