In my program, I must recognize a bunch of alt-code characters as input. I am having a problem with Java not recognizing characters.
For example, the simple character '▬' (alt+22):
char c = '▬';
System.out.println(c);
prints out:
?
How do I get Java to recognize these simple characters?