We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af4bd29 commit 734cf87Copy full SHA for 734cf87
src/PowerShellEditorServices/Session/SessionPSHostUserInterface.cs
@@ -57,9 +57,9 @@ public ConsoleServicePSHostUserInterface(bool enableConsoleRepl)
57
{
58
if (enableConsoleRepl)
59
60
- // Set the output encoding to Unicode so that all
61
- // Unicode characters are written correctly
62
- System.Console.OutputEncoding = System.Text.Encoding.Unicode;
+ // Set the output encoding to UTF-8 so that special
+ // characters are written to the console correctly
+ System.Console.OutputEncoding = System.Text.Encoding.UTF8;
63
}
64
65
this.rawUserInterface =
0 commit comments