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 e5dff15 commit 2197548Copy full SHA for 2197548
src/PowerShellEditorServices/Session/SessionPSHostUserInterface.cs
@@ -65,9 +65,9 @@ public ConsoleServicePSHostUserInterface(bool enableConsoleRepl)
65
{
66
if (enableConsoleRepl)
67
68
- // Set the output encoding to Unicode so that all
69
- // Unicode characters are written correctly
70
- 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;
71
}
72
73
this.rawUserInterface =
0 commit comments