Hello,
I have following simple program:
public class Test {
public static void main(String[] args) {
System.out.println("\u10d0\u044F");
}
}
i have added dejavu sans mono to console font. I'm trying to run program in cmd.
I'm typing following commands:
chcp 65001
then
java -jar -Dfile.encoding=UTF-8 HelloWorld.jar
The result i should get is: აя
but i'm getting:
აяяяაя
აя
Can anyone help me?