I need to allow internationals words in our string.
For example:
public class Java
{
public static void main (String[] args) throws Exception
{
String a="ğğğğ";
System.out.println(a);
}
}
The expected output is:
ğğğğ
but I get:
????
instead.