Assuming I have fonts installed which have the appropriate glyphs in them, is there a command shell for Windows XP that will display Unicode characters? At a minimum, two things that should display Unicode correctly:

  • Directory listings. I don't care what I have to type (dir, ls, get-childitem, etc.), so long as files with Unicode characters in their names appear with the right glyphs, not the unprintable character box.
  • Text file content listings. Again, doesn't matter to me if it's 'less', 'more', 'cat', 'dog', etc., so long as the characters are printed. I recognize that this is more complicated because of character encoding of the file, so if I have to specify that on the command line that's fine with me.

Here's what I've tried so far:

  • cmd.exe
  • Windows PowerShell; including the multilingual version.
  • Cygwin bash

No luck. I even tried installing custom fonts for cmd/PowerShell. PowerShell and cmd.exe seem to be Unicode-aware in the sense that I can copy/paste the non-printable box out of there and it will paste into other apps with the correct characters. Cygwin (?) seems to convert to the ? character and that comes through in the copy/paste.

Any ideas?

link|improve this question

feedback

7 Answers

up vote 10 down vote accepted

This was a major issue in PowerShell v1. v2 is shipping with a "graphical shell" that corrects the problem, which is ultimate not with PowerShell but with the Windows console host (which Cmd.exe also uses). You can get the current CTP for PowerShell v2, if you want.

...swooping in with my brand new edit powers

Actually, Powershell v2.0 was finalized and shipped with the release of Windows 7 and 2008 R2 in early August. In addition, the backported versions (Vista/2008) reached their Release Candidate milestone just the other day; XP/2003 should follow very shortly. Linky linky.

link|improve this answer
Upvoted for suggesting a working solution to the problem. I would accept it, except I'm holding out hope for something better. As "early alpha", it has a long way to go to be a truly usable shell. – Brandon DuRette Dec 18 '08 at 21:44
1  
The current CTP3 is incredibly stable and, sadly, it's about the only solution out there these days that doesn't involve paying money. – Don Jones Dec 30 '08 at 14:58
Since this old topic got bumped to the top of the list recently, I edited the primary answer with a link to the latest Powershell bits. – Richard Berg Sep 19 '09 at 4:14
feedback

To do this with cmd.exe, you'll need to use the console properties dialog to switch to a Unicode TrueType font.

Then use these commands:

 CHCP 65001
 DIR > UTF8.TXT
 TYPE UTF8.TXT

Commands:

  • Switch console to UTF-8 (65001)
  • Redirect output of DIR to UTF8.TXT
  • Dump UTF-8 to console

The characters will still need to be supported by the font to display properly on the console.

I18N: Unicode at the Windows command prompt (C++; .Net; Java)

link|improve this answer
This is the right way to do it! Thx McDowell! – Peter Parker Dec 8 '10 at 17:06
feedback

Setting the codepage to UTF-8 with the command "chcp 65001" should help you print file contents correctly to the shell (using cmd.exe). This won't work for directory listings though (UTF-16 encoding in NTFS file names).

link|improve this answer
feedback

for a true shell , try powershell plus. you can select unicode fonts and work with other languages not only in the editor but in the true console

link|improve this answer
feedback

This is how I can got Chinese output in cmd.exe running on Windows 7 Pro English Version. I also tried file names with Japanese, Russian, and Polish and they all seem to display correctly. Input also seems to work, at least when I tried to do a dir xxx* containing non-ascii characters.

  1. Install console2, which is a front-end to cmd.exe (and other shells)

  2. After installation, follow these instructions

    Delete the key HKEY_CURRENT_USER\Console\Console2 command window in the registry.

    Import the following data into windows registry:

    Windows Registry Editor Version 5.00
    [HKEY_CURRENT_USER\Console\Console2 command window] 
    "CodePage"=dword:000003a8 
    "FontSize"=dword:000a0000 
    "FontFamily"=dword:00000036 
    "FontWeight"=dword:00000190 
    "FaceName"="細明體" 
    "HistoryNoDup"=dword:00000000
    
  3. You may or may not have to change the font. Initially I had the font set to @NimSum, and the Chinese characters came out rotated 90 degrees. Then I switched to NimSum (without the @) and it came out correctly. Then just out of curiosity I switched to Consola and yet I can still see the Chinese characters. So I'm not sure if you actually have to set the font or not.

link|improve this answer
feedback

Have you tried Console 2? Be careful with the colors/palette configurations though. Those are a bit buggy. (Edit: Confirmed to not work. Behaves like cmd.exe).

link|improve this answer
On your suggestion, I tried it and it doesn't seem to solve my problem. Running 'dir' in a directory with files that have names that include Korean characters results in ?'s. This behavior is the same as cmd.exe. – Brandon DuRette Jan 8 '09 at 21:21
Ok. Console2 probably uses the Windows console host as well then, just with a nicer front end. – kimsnarf Jan 9 '09 at 18:33
feedback

PowerShell V2 CTP3 inside Console2 seems to do that. The only downside is that the default console encoding is UCS-2 LE instead of UTF-8.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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