S
Siegfried Heintze
The following perl program prints the russian alphabet in Cryllic when I use
the urxvt console from cygwin. It seems to understand UTF-8 better than
cmd.exe.
perl -wle "binmode STDOUT, q[:utf8]; print chr() for 0x410 .. 0x430;"
How can I translate this program to C# and write a console mode C# program
that emits UTF-8 and displays the proper Cryllic glyphs? I don't care what
console it works with, cmd.exe or urxvt are fine.
the urxvt console from cygwin. It seems to understand UTF-8 better than
cmd.exe.
perl -wle "binmode STDOUT, q[:utf8]; print chr() for 0x410 .. 0x430;"
How can I translate this program to C# and write a console mode C# program
that emits UTF-8 and displays the proper Cryllic glyphs? I don't care what
console it works with, cmd.exe or urxvt are fine.