http://www.perlmonks.org?node_id=330147


in reply to Character Encoding and Windows Console woes

I learned how to get the Console to work properly with Perl. I'm posting it here in the hopes of helping someone else some day.

First, changing code pages only works properly if you change the Console window to use a truetype font. Leaving it at "raster fonts" will give strange and even inconsistant results.

The magic incantation is to change to code page 65001. This makes the console operate in UTF-8. Perl programs will now print output correctly.

  • Comment on Re: Character Encoding and Windows Console woes

Replies are listed 'Best First'.
Re^2: Character Encoding and Windows Console woes
by soliplaya (Beadle) on Mar 17, 2007 at 14:26 UTC
    You have helped me greatly, Sir, and I thank you. This is a precious tip. Character set issues in programs are complicated enough by themselves, without adding an additional layer of obfuscation due to the character set and font of the terminal one is using to debug them.