How do I print high-order characters to the console? Whenever I use System.out.println(), it chops off anything above seven bits.
Created May 8, 2012
John Zukowski System.out is an OutputStream. You need to work with a Writer object. With Java 6, you would use the printf() method of the new Console class, which is returned by the console() method of System.