I am trying to run Hebrew
words by System.out.println
- and i get question marks: ????
This issue prevent me to make if statement - check if string equals to something on Hebrew.
String one = "בוקר";
String two = "בוקר";
if (one.equals(two)) {
System.out.println("בוקר");
}
//just for test the question marks:
System.out.println("בוקר");
I goes to Other settings -> Default settings -> Editor -> File Encodings ->
Tried to put utf-8
, and after this failed i tried to put windows-1255
Still, get question marks.