For example System.out.println("╚"); displays as a ?, same goes for System.out.println("\u255a");
Why doesn't this work? Stdout does indeed support these characters so I don't get it.
|
For example System.out.println("╚"); displays as a ?, same goes for System.out.println("\u255a"); Why doesn't this work? Stdout does indeed support these characters so I don't get it.
| |||||||||||||||
feedback
|
|
See this question. When Java’s default character encoding is not UTF-8 — as is the case, it seems, on Windows and OS X, but not Linux — then characters which fail to encode are converted to question marks. You can pass the correct switch ( | |||
|
feedback
|
|
The Windows command prompt uses old DOS OEM encodings by default. U+255A (╚) is more likely to be supported by the OEM codepages as these ranges were used for accented characters in Windows. You can read more here, here, here and here. Personally, I would avoid the | |||
|
feedback
|
|
In case you are using Windows, the console is not UTF-8 but UTF-16 which is the same native encoding that Java uses, therefore you should be able to print wide character strings directly. I'm not a Java programmer but in the case of C you have to call If you want to print multibyte character strings instead you can set the Windows console to UTF-8 from the commandline with Good luck! | ||||
|
feedback
|