"The parameter is incorrect" when setting Unicode as console encoding - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T23:06:54Z http://stackoverflow.com/feeds/question/419518 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/419518/the-parameter-is-incorrect-when-setting-unicode-as-console-encoding 2 "The parameter is incorrect" when setting Unicode as console encoding Epaga 2009-01-07T07:59:38Z 2009-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#419541 0 Answer by Fabrizio C. for "The parameter is incorrect" when setting Unicode as console encoding Fabrizio C. 2009-01-07T08:12:47Z 2009-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#918748 1 Answer by iguananet for "The parameter is incorrect" when setting Unicode as console encoding iguananet 2009-05-28T01:16:04Z 2009-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#998249 0 Answer by Trevor Robinson for "The parameter is incorrect" when setting Unicode as console encoding Trevor Robinson 2009-06-15T20:39:33Z 2009-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>