Incorrect display in Cyrillic Windows

Dennis Ritchie via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Wed Mar 4 05:14:09 PST 2015


On Wednesday, 4 March 2015 at 12:14:01 UTC, Martin Krejcirik 
wrote:
> You have to set your console encoding to UTF-8 first.
>
> You can do it by command "chcp 65001" or by calling Windows API 
> function:
>
> extern(Windows) BOOL SetConsoleOutputCP( UINT );
> SetConsoleOutputCP( 65001 );
>
> Also change your font to Lucida Console.

Thanks.


More information about the Digitalmars-d-learn mailing list