Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I open cmd.exe in Windows, what encoding is it using? How can I check which encoding it is currently using? Does it depend on my regional setting or are there any environment variables to check?

What happens when you type a file with a certain encoding? Sometimes I get garbled characters (incorrect encoding used) and sometimes it kind-of works. However I don't trust anything as long as I don't know what's going on. Can anyone explain?

share|improve this question

5 Answers

up vote 112 down vote accepted

While chcp does indeed show the current code page cmd uses, it is of little to no relevance depending on your settings and how you started cmd.

First of all: Your console font determines what the console window is capable of displaying. More on that below.

Secondly, for Unicode files the current codepage only determines what gets displayed, depending on the font used (again, see below). For non-Unicode files the interpretation of the bytes is left to the current codepage, indeed:

> chcp 850
Active code page: 850

> type 1251.txt
abcde xyz
ÓßÔÒõ ²■ 

> chcp 1251
Active code page: 1251

> type 1251.txt
abcde xyz
абвгд эюя

(Will show up garbled if you have raster fonts enabled, but will copy fine.)


For the following I prepared a little test file, containing letters from different cultures:

ASCII     abcde xyz
German    äöü ÄÖÜ ß
Polish    ąęźżńł
Russian   абвгдеж эюя
CJK       你好
  • If you use "Raster Fonts" then the console window will be confined th the codepage chcp shows. Unfortunately this is still the default in Windows 7 and I wish they wouldn't stick to such stupid defaults. However, the characters that are displayable still depend on the system you have, in my case the raster fonts are only for Latin and won't display Russian or otherwise.

    > chcp 850
    Active code page: 850
    
    > type uc-test.txt
    ASCII     abcde xyz
    German    äöü ÄÖÜ ß
    Polish    aezznl
    Russian   ??????? ???
    CJK       ??
    
    > chcp 437
    Active code page: 437
    
    > type uc-test.txt
    ASCII     abcde xyz
    German    äöü ÄÖÜ ß
    Polish    aezznl
    Russian   ??????? ???
    CJK       ??
    

    Note that in both CP850 and CP437 the German umlauts and ß work fine. The polish letters ąęźżńł get converted to their closest fits in ASCII, whereas for Cyrillic or Han ideographs there is no such easy replacement, which is why they become question marks.

    > chcp 1251
    Active code page: 1251
    
    > type uc-test.txt
    ASCII     abcde xyz
    German    aou AOU ?
    Polish    aezznl
    Russian   абвгдеж эюя
    CJK       ??
    

    1251 is the ANSI codepage for Cyrillic, as you can see, it lacks both umlauts and Polish non-ASCII letters, but they can get converted to their closest equivalent in that codepage, unlike ß which just becomes a question mark again. But Cyrillic now works correctly. As expected, Han ideographs don't display, just as before.

    > chcp 1250
    Active code page: 1250
    
    > type uc-test.txt
    ASCII     abcde xyz
    German    äöü ÄÖÜ ß
    Polish    ąęźżńł
    Russian   ??????? ???
    CJK       ??
    

    1250 is the ANSI codepage for Central European, which includes Polish, also German special letters are also included which is nice when talking to German-speaking Poles. However, Cyrillic and Han are not there and thus just get question marks again.

    Interesting to note is that when using raster fonts, the console window's copy/paste abilities will cause text to be copied tied to the selected codepage (probably it's copied in Unicode anyway) so even when one isn't able to see Russian due to font issues, it copies fine, as long as one is in CP1251, or 866, or 855 (well, there are many of them :-)).

  • If you select a True Type font, such as Lucida Console or Consolas, then you will be able to see and type Unicode characters on the console, regardless of what chcp says:

    > chcp 850
    Active code page: 850
    
    > type uc-test.txt
    ASCII     abcde xyz
    German    äöü ÄÖÜ ß
    Polish    ąęźżńł
    Russian   абвгдеж эюя
    CJK       你好
    
    > chcp 437
    Active code page: 437
    
    > type uc-test.txt
    ASCII     abcde xyz
    German    äöü ÄÖÜ ß
    Polish    ąęźżńł
    Russian   абвгдеж эюя
    CJK       你好
    
    > chcp 1251
    Active code page: 1251
    
    > type uc-test.txt
    ASCII     abcde xyz
    German    äöü ÄÖÜ ß
    Polish    ąęźżńł
    Russian   абвгдеж эюя
    CJK       你好
    

    (Note that the CJK characters probably only show up as boxes in your console, as they do on my machine, but the characters are still correct – it's just the font that lacks the glyphs and the console subsystem cannot do font substitution.)

Then there is the encoding that is used when cmd is redirecting stuff to a file. This closely follows chcp, regardless of the font used for the console window. You can start cmd with

cmd /u

to cause it to redirect to files in Unicode (UTF-16, Little Endian in this case, as usual on Windows).

share|improve this answer
4  
Thanks a lot for this detailed description. As always there is no short and easy answer when it comes to encoding, but this explains it beautifully. Thanks! – danglund Aug 11 '09 at 14:01
I've found variations of this commentary here and there, but it doesn't work. I've tried setting the console font to Lucinda - wish it was that easy. I've also done all the experiments with chcp. PowerShell isn't the answer either. – Roger F. Gay Sep 30 '11 at 14:19
PowerShell has the great advantage of using Unicode pretty much everywhere without caring about the console encoding. The only exception are probably native programs that don't have Unicode output. Those are a bit trickier and require .NET to launch them. Still, overall it works pretty well. – Јοеу Sep 30 '11 at 19:10
PowerShell's console encoding is stored in the automatic variable $OutputEncoding which is set to ASCII by default. Here is an interesting post about it: blogs.msdn.com/b/powershell/archive/2006/12/11/… – Andy Arismendi Feb 16 '12 at 3:06
3  
Python 3.3 supports code page 65001, which is utf-8 encoding. Check it out. – Mark Ransom Mar 7 '12 at 23:47
show 2 more comments

To answer your second query re. how encoding works, Joel Spolsky wrote a great introductory article on this. Strongly recommended.

share|improve this answer
4  
I've read it and I know it. However, on Windows I always feel lost because the OS and most applications seem totally ignorant of encoding. – danglund Aug 11 '09 at 13:59

@Joey: Great explanation! One thing I'd like to add to your answer: You created a file uc-test.txt to demonstrate that this will output correctly regardless of the codepage you set. For this to work, the file has to be saved in UTF-16 (LE).

share|improve this answer
if you fell like a small detail deserves its space in an existing answer, post it as a comment to that answer, so its author get notified and may discuss and/or edit the answer accordingly. – jweyrich Dec 16 '10 at 10:29
3  
JvH has a reputation of 1 and cannot comment on answers yet. – Sebastián Grignoli Dec 29 '10 at 14:37

type

chcp

to see your current code page. (as Dewfy already said).

nlsinfo

to see all installed code pages and find out what that your code page number means.

edited : You need to have Windows Server 2003 Resource kit installed (works on Windows XP) to use nlsinfo

share|improve this answer
3  
Interestingly, nlsinfo doesn't appear to exist on my Windows 7. – Јοеу Aug 11 '09 at 10:29
1  
nlsinfo also doesn't exist on my Windows XP SP3 machine. – Thomas Owens Aug 11 '09 at 11:41
1  
Oh, I'm sorry. I think it comes with Windows Server Resource Kit tools. I've used it a couple of times on my Windows XP SP3 machine earlier and didn't know it wasn't installed by default. – Cagdas Altinkaya Aug 11 '09 at 11:52
Ah, that explains why it's there on my Vista machine, where I installed those. – Јοеу Aug 11 '09 at 14:05

Command CHCP shows current codepage. It has 3 difgits: 8xx and is different from windows 12xx. So typing a english only text you wouldn't see any difference, but extended codepage (like Cyrillic) will be printed wrongly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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