I created Scannerone that gets input from System.inso that I can get input from the console.
Scanner scanner = new Scanner(System.in, "UTF-8");
When i do
String s = scanner.next();
and then type דברin the console, the string value will become ???? ???.
The console can display Unicode characters, but why can't I read them?
source
share