<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Wie kann ich alle Unicode zeichen ausgeben?[gelöst]]]></title><description><![CDATA[<p>Hallo <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
<p>Ich brauche hilfe wie kann ich alle Unicode zeichen in der Windowskonsole ausgeben.</p>
<p>Ich habe nach einer Lösung gesucht aber keine gefunden.<br />
Ich hoffe ihr könnt mir helfen.</p>
<p>Ich programmier mit Microsoft Visual Studio C++ Express.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/328704/wie-kann-ich-alle-unicode-zeichen-ausgeben-gelöst</link><generator>RSS for Node</generator><lastBuildDate>Tue, 07 Jul 2026 15:42:14 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/328704.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 23 Oct 2014 13:06:23 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Wie kann ich alle Unicode zeichen ausgeben?[gelöst] on Thu, 23 Oct 2014 16:23:12 GMT]]></title><description><![CDATA[<p>Hallo <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
<p>Ich brauche hilfe wie kann ich alle Unicode zeichen in der Windowskonsole ausgeben.</p>
<p>Ich habe nach einer Lösung gesucht aber keine gefunden.<br />
Ich hoffe ihr könnt mir helfen.</p>
<p>Ich programmier mit Microsoft Visual Studio C++ Express.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423573</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423573</guid><dc:creator><![CDATA[atomicfire]]></dc:creator><pubDate>Thu, 23 Oct 2014 16:23:12 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich alle Unicode zeichen ausgeben?[gelöst] on Thu, 23 Oct 2014 13:13:51 GMT]]></title><description><![CDATA[<p>Alle? Das wird aber extrem viel werden... Seit Juni diesen Jahres sind es schon 113.021 Zeichen.</p>
<p>Wie ausgeben... wie wärs mit ner for-Schleife? Oder wo genau hängst du?</p>
<p>Hier ne Liste, damit du siehst, wieviele das sind: <a href="http://unicode-table.com/" rel="nofollow">http://unicode-table.com/</a></p>
<p>Edit: Ach ja, für die Ausgabe auf der Windows cmd solltest du die codepage wechseln, sonst kann es dir keine Unicode-Zeichen anzeigen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423575</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423575</guid><dc:creator><![CDATA[oenone]]></dc:creator><pubDate>Thu, 23 Oct 2014 13:13:51 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich alle Unicode zeichen ausgeben?[gelöst] on Thu, 23 Oct 2014 13:15:13 GMT]]></title><description><![CDATA[<p>Ich möchte zum beispie das ausgeben : » für ein kleines menü aber das kann ich nicht den dan kommt ein anderes zeichen.<br />
Die Codepage habe ich auch geändert mit SetConsoleOutputCP(65001);</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423577</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423577</guid><dc:creator><![CDATA[atomicfire]]></dc:creator><pubDate>Thu, 23 Oct 2014 13:15:13 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich alle Unicode zeichen ausgeben?[gelöst] on Thu, 23 Oct 2014 13:16:34 GMT]]></title><description><![CDATA[<p>Welches encoding benutzt du für die Ausgabe? Probier mal ein <code>chcp 65001</code> vor dem Aufruf deines Programms. Natürlich muss die Schriftart deines cmd auch die Zeichen enthalten, probier z.B. Lucida Console.</p>
<p>Edit: Erstell mal ein Minimalbeispiel und poste es hier.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423578</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423578</guid><dc:creator><![CDATA[oenone]]></dc:creator><pubDate>Thu, 23 Oct 2014 13:16:34 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich alle Unicode zeichen ausgeben?[gelöst] on Thu, 23 Oct 2014 13:17:04 GMT]]></title><description><![CDATA[<p>Schriftart wechseln hat auch nichts gebracht.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423579</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423579</guid><dc:creator><![CDATA[atomicfire]]></dc:creator><pubDate>Thu, 23 Oct 2014 13:17:04 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich alle Unicode zeichen ausgeben?[gelöst] on Thu, 23 Oct 2014 13:26:02 GMT]]></title><description><![CDATA[<p>hir ein beispiel</p>
<pre><code>int main()
{

	SetConsoleOutputCP(65001);

	wcout &lt;&lt; L&quot;»&quot; &lt;&lt; endl;

	Sleep(1000);
	cls();

	system(&quot;pause&quot;);

}
</code></pre>
<p>cls ist nur system(&quot;cls&quot;);</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423581</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423581</guid><dc:creator><![CDATA[atomicfire]]></dc:creator><pubDate>Thu, 23 Oct 2014 13:26:02 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich alle Unicode zeichen ausgeben?[gelöst] on Thu, 23 Oct 2014 13:36:19 GMT]]></title><description><![CDATA[<p>probiers mal mit cout und ohne dem L. Ansonsten füg eine locale hinzu, etwa so:</p>
<pre><code>#include &lt;iostream&gt;
#include &lt;locale&gt;

int main() {
  std::locale::global (std::locale (&quot;de_DE.UTF-8&quot;));
  std::wcout &lt;&lt; L&quot;»\n&quot;;
}
</code></pre>
<p>Die default-Locale kann nicht mit wchars umgehen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423586</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423586</guid><dc:creator><![CDATA[oenone]]></dc:creator><pubDate>Thu, 23 Oct 2014 13:36:19 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich alle Unicode zeichen ausgeben?[gelöst] on Thu, 23 Oct 2014 13:43:42 GMT]]></title><description><![CDATA[<p>Sobalt ich die locale ändere funktionir mein programm nicht mehr.<br />
Der Compiller zeigt mir keine fehler an aber die konsole sagt das sie nicht mehr funktionirt</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423589</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423589</guid><dc:creator><![CDATA[atomicfire]]></dc:creator><pubDate>Thu, 23 Oct 2014 13:43:42 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich alle Unicode zeichen ausgeben?[gelöst] on Thu, 23 Oct 2014 15:49:01 GMT]]></title><description><![CDATA[<pre><code>#include &lt;iostream&gt;
#include &lt;cstdio&gt;
#include &lt;io.h&gt;
#include &lt;fcntl.h&gt;

int __cdecl
wmain()
{
	_setmode(_fileno(stdout), _O_U16TEXT);  // file mode: UTF-16LE ohne BOM
	std::wcout &lt;&lt; L&quot;»\n&quot;;
}
</code></pre>
<p>Funktioniert selbstverständlich nur unter Windows.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423616</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423616</guid><dc:creator><![CDATA[EinGast]]></dc:creator><pubDate>Thu, 23 Oct 2014 15:49:01 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich alle Unicode zeichen ausgeben?[gelöst] on Thu, 23 Oct 2014 15:52:18 GMT]]></title><description><![CDATA[<p>soll ja nur auf windows funktioniren.<br />
Es hat funktionirt danke <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /> .</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423617</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423617</guid><dc:creator><![CDATA[atomicfire]]></dc:creator><pubDate>Thu, 23 Oct 2014 15:52:18 GMT</pubDate></item></channel></rss>