My cmd promt's default code page is 936.
I need to change it to utf8.
chcp 65001
The above doesn't work,what's the correct one?
|
|
|||||
|
|
|
There's no utf-8 codepage for the command prompt since it's not really Unicode compliant, afaik. You can choose a codepage that has the symbol you want, but that is all. That is why Unicode was born. Besides, UTF-8 is a way of encoding/decoding Unicode characters (as a variable 4-byte code point (1 byte for ASCII, 2 bytes for CJK, etc.), as opposed to UTF-16 (2+2bytes) or UTF-32 (4-bytes, fixed)), not the character set itself. See here, but mostly take a look at Unicode. |
||
|
|