"The parameter is incorrect" when setting Unicode as console encoding - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T23:06:54Zhttp://stackoverflow.com/feeds/question/419518http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/419518/the-parameter-is-incorrect-when-setting-unicode-as-console-encoding2"The parameter is incorrect" when setting Unicode as console encodingEpaga2009-01-07T07:59:38Z2009-06-15T20:39:33Z
<p>I get the following error:</p>
<pre><code>Unhandled Exception: System.IO.IOException: The parameter is incorrect.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.__Error.WinIOError()
at System.Console.set_OutputEncoding(Encoding value)
at (my program)
</code></pre>
<p>when I run the following line of code:</p>
<pre><code> Console.OutputEncoding = Encoding.Unicode;
</code></pre>
<p>Any idea why? I do not get this error if I set the encoding to UTF8 instead.</p>
http://stackoverflow.com/questions/419518/the-parameter-is-incorrect-when-setting-unicode-as-console-encoding/419541#4195410Answer by Fabrizio C. for "The parameter is incorrect" when setting Unicode as console encodingFabrizio C.2009-01-07T08:12:47Z2009-01-07T09:46:15Z<p>I think it has to do with the <code>CodePage</code> of the <code>Encoding</code> you are using. In particular see <a href="http://msdn.microsoft.com/en-us/library/ms686036(VS.85).aspx" rel="nofollow">SetConsoleOutputCP Function</a>. I don't know much more, sorry.</p>
<p>Edit: I reported the reference to the <code>SetConsoleOutputCP</code> because this function is internally called (through PInvoke) by the (set operation of) <code>Console.OutputEncoding</code>.</p>
http://stackoverflow.com/questions/419518/the-parameter-is-incorrect-when-setting-unicode-as-console-encoding/918748#9187481Answer by iguananet for "The parameter is incorrect" when setting Unicode as console encodingiguananet2009-05-28T01:16:04Z2009-05-28T01:16:04Z<p>Encoding.Unicode is UTF-16 which uses 2 bytes to encode all characters. The ASCII characters (English characters) are the same in UTF-8 (single bytes, same values), so that might be why it works.</p>
<p>My guess is that the Windows Command Shell doesn't fully support Unicode. Funny that the Powershell 2 GUI does support UTF-16 (as far as I know), but the program throws the same exception there. </p>
<p>The following code works which shows that the Console object can have its output redirected and support Encoding.Unicode:</p>
<pre><code>FileStream testStream = File.Create("test.txt");
TextWriter writer = new StreamWriter(testStream, Encoding.Unicode);
Console.SetOut(writer);
Console.WriteLine("Hello World: \u263B"); // unicode smiley face
writer.Close(); // flush the output
</code></pre>
http://stackoverflow.com/questions/419518/the-parameter-is-incorrect-when-setting-unicode-as-console-encoding/998249#9982490Answer by Trevor Robinson for "The parameter is incorrect" when setting Unicode as console encodingTrevor Robinson2009-06-15T20:39:33Z2009-06-15T20:39:33Z<p>According to the list of <a href="http://msdn.microsoft.com/en-us/library/dd317756%28VS.85%29.aspx" rel="nofollow">Code Page Identifiers on MSDN</a>, the UTF-16 and UTF-32 encodings are managed-only:</p>
<pre><code>1200 utf-16 Unicode UTF-16, little endian byte order (BMP of ISO 10646); available only to managed applications
1201 unicodeFFFE Unicode UTF-16, big endian byte order; available only to managed applications
12000 utf-32 Unicode UTF-32, little endian byte order; available only to managed applications
12001 utf-32BE Unicode UTF-32, big endian byte order; available only to managed applications
</code></pre>
<p>For instance, they're not listed in the registry with the other system code pages under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Nls\CodePage.</p>