when i compile the following code, i am not getting any compile time error . where as the out put for the code is displayed as "?????".
i have tried compiling the code as javac hinditest.java
is there any way i can get output in the language that i have entered (hindi)
public class hinditest{
public static void main(String args[])
{
String tst = "पाततद";
System.out.print(tst);
}
}
thanks in advance ..