I'm trying to get character "2936" printed out ( it is the arrow on your big Enter of the keyboard) as seen in Unicode charts Supplemental Arrows B. However it does show as question mark. Suggestions?
public class PrintCharacters
{
public static void main(String[] args)
{
String[] one = {"\u002e", ",","?","\u0021", "'", "@",":",";","\u002f","(",")","1","\u2936"};
for(int i = 0; i < one.length; i++)
{
System.out.println(one[i]);
}
}
}