Unicode Console Application in Delphi 2009 - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T18:43:48Zhttp://stackoverflow.com/feeds/question/265018http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/265018/unicode-console-application-in-delphi-20094Unicode Console Application in Delphi 2009Kabrol2008-11-05T12:36:32Z2008-11-10T15:48:33Z
<p>How can I create unicode console application with Delphi 2009?</p>
<p>If I do like this:</p>
<pre><code>{$APPTYPE CONSOLE}
uses
SysUtils;
begin
writeln('öüğşç سيمانتت');
end.
</code></pre>
<p>I get the following:</p>
<pre><code>ougsc ???????
</code></pre>
http://stackoverflow.com/questions/265018/unicode-console-application-in-delphi-2009/265034#2650344Answer by Gamecat for Unicode Console Application in Delphi 2009Gamecat2008-11-05T12:44:06Z2008-11-05T12:44:06Z<p>You can't (At least not with the standard library). The console functions are the only non Unicode functions in Delphi 2009.</p>
http://stackoverflow.com/questions/265018/unicode-console-application-in-delphi-2009/265036#265036-1Answer by Michal Niklas for Unicode Console Application in Delphi 2009Michal Niklas2008-11-05T12:44:18Z2008-11-05T12:44:18Z<p>Windows console cannot display unicode charactes,
so try to send output to file with:</p>
<pre><code>my_app.exe > unicode_file.txt
</code></pre>
<p>and try viewing unicode_file.txt with good text editor.</p>
http://stackoverflow.com/questions/265018/unicode-console-application-in-delphi-2009/266305#2663054Answer by mghie for Unicode Console Application in Delphi 2009mghie2008-11-05T19:36:34Z2008-11-05T19:36:34Z<p>I'm not sure that is what you're after, but you can create Unicode console applications in all 32-bit Delphi versions by using the Windows API functions. I just tried with Delphi 4:</p>
<pre><code>program test;
{$APPTYPE CONSOLE}
uses
Windows;
var
s: WideString;
i: integer;
Written: Cardinal;
begin
SetLength(s, 80);
for i := 1 to 80 do
s[i] := WideChar(48 + i);
WriteConsoleW(GetStdHandle(STD_OUTPUT_HANDLE), PWideChar(s), 80, Written,
nil);
end.
</code></pre>
<p>I don't have Delphi 2009 to try how entering Unicode strings in the editor works...</p>
http://stackoverflow.com/questions/265018/unicode-console-application-in-delphi-2009/267932#2679321Answer by mghie for Unicode Console Application in Delphi 2009mghie2008-11-06T08:23:08Z2008-11-06T08:23:08Z<p>@Kabrol: With the raster font set I don't see either of the chars, but with Lucida Console I see at least widechar($11f) - "ğ".</p>
<p>Please see <a href="http://support.microsoft.com/kb/99795" rel="nofollow">"SetConsoleOutputCP Only Effective with Unicode Fonts"</a> and in general the description of console API functions at <a href="http://msdn.microsoft.com/en-us/library/ms682087(VS.85).aspx" rel="nofollow">"Console Reference"</a>. </p>
http://stackoverflow.com/questions/265018/unicode-console-application-in-delphi-2009/268202#2682023Answer by TOndrej for Unicode Console Application in Delphi 2009TOndrej2008-11-06T10:17:23Z2008-11-06T10:17:23Z<p>Writeln in Delphi 2009 still uses ANSI (see System TTextRec) but you can use UTF8Encode and change the console's output code page to UTF8 by calling SetConsoleOutputCP(CP_UTF8). You will also need a good font to actually display Unicode characters.</p>
http://stackoverflow.com/questions/265018/unicode-console-application-in-delphi-2009/278204#2782040Answer by PatrickvL for Unicode Console Application in Delphi 2009PatrickvL2008-11-10T15:48:33Z2008-11-10T15:48:33Z<p>Actually, there is a way to do this with standard WriteLn() calls, but it involves patching a bug in the Delphi 2009 RTL.
The thing is, Delphi does some compiler magic for WriteLn. For UnicodeString arguments, this results in a call to _WriteUString. That method can be seen in System.pas, although you can't call it directly. In it you'll see a call to _WriteLString, but that method receives a AnsiString argument. So when this call is taking place, your UnicodeString is being downcasted to AnsiString.</p>
<p>The solution is, to change this UnicodeString->AnsiString cast into a UnicodeString->UTF8String cast.</p>
<p>Now, when you set the console to UTF8, all your characters will go through untouched (and yes, ofcourse you'll need a font with support for the characters you want to show) :</p>
<pre><code>SetConsoleOutputCP(CP_UTF8)
</code></pre>
<p>For this RTL fix, you'll need to do some nifty code-hooking. I've done this already, and a collegue of mine is busy writing an article about this. I'll post a link once it's available online.</p>
<p>Cheers!</p>