vote up 0 vote down star

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?

flag

40% accept rate
chcp 65001 worked nice for me. Programs that are not utf-8 will output a big mess, of course. – Havenard Sep 3 at 0:23
Did you try non ascii letters? – Shore Sep 3 at 0:26

1 Answer

vote up 2 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.