I used Netbeans IDE to compile and run the below program.
public class Unicode {
public static void main(String[] args) {
char a=3476;
System.out.println(a);
}
}
But the output was a box. When I ran the program on the console, it printed a question mark. How can I fix the issue?