Unix unicode encoding question Hello everyone,
I am having some troubles trying to display French letters in my unix environment. I have written up a simple java program that has 1 line:
System.out.println("\351");
In windows, I get an e with a dash on top of it. In unix, I get a ?. I am assuming the default charset does not contain this symbol. How do I change the unicode encoding to UTF-16? Or is there another solution?
Thanks in advance |