Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Yes, you need to download applicable font packs for your O/S. – StuartLC Sep 14 '12 at 11:02

1 Answer

up vote 0 down vote accepted

You can't display a Unicode character on the Windows console directly from Java because it always writes to the console using the application code page (ANSI). However you could use JNA APIs to write unicode characters to the console directly. You would still need to install a monospace font that includes a glyph for the character that you're trying to display.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.