How to use Special Chars in Java/Eclipse - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T06:20:46Zhttp://stackoverflow.com/feeds/question/200691http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/200691/how-to-use-special-chars-in-java-eclipse5How to use Special Chars in Java/EclipseBurkhard2008-10-14T10:42:00Z2009-02-12T20:13:39Z
<p>How can I use/display characters like ♥, ♦, ♣, or ♠ in Java/Eclipse?</p>
<p>Wenn I try to use them directly, i.e. in the source code, Eclipse cannot save the file:</p>
<p><img src="http://img220.imageshack.us/img220/1292/cp1252vn6.jpg" alt="Save Problems" /></p>
<p>What can I do?</p>
<p>Edit: How can I find the unicode escape sequence?</p>
http://stackoverflow.com/questions/200691/how-to-use-special-chars-in-java-eclipse/200698#2006983Answer by Jon Skeet for How to use Special Chars in Java/EclipseJon Skeet2008-10-14T10:45:14Z2008-10-14T10:45:14Z<p>Either change your encoding to one which will cope, e.g. UTF-8, or find the relevant Unicode number and use a \uxxxx escape sequence to represent it.</p>
http://stackoverflow.com/questions/200691/how-to-use-special-chars-in-java-eclipse/200708#2007088Answer by Joe Lencioni for How to use Special Chars in Java/EclipseJoe Lencioni2008-10-14T10:49:01Z2008-10-14T21:05:17Z<p>The problem is that the characters you are using cannot be represented in the encoding you have the file set to (Cp1252). The way I see it, you essentially have two options:</p>
<p>Option 1. <strong>Change the encoding.</strong> <a href="http://publib.boulder.ibm.com/infocenter/eruinf/v2r1m1/index.jsp?topic=/com.ibm.iru.doc/concepts/cirerwp.htm" rel="nofollow">According to IBM</a>, you should set the encoding to UTF-8. I believe this would solve your problem.</p>
<blockquote>
<ul>
<li>Set the global text file encoding preference Workbench > Editors to "UTF-8".</li>
<li>If an encoding other than UTF-8 is required, set the encoding on the individual file rather than using the global preference setting. To do this use the File > Properties > Info menu selection to set the encoding on an individual file.</li>
</ul>
</blockquote>
<p>Option 2. <strong>Remove the characters which are not supported by the "Cp1252" character encoding.</strong> You can replace the unsupported characters with <a href="http://en.wikibooks.org/wiki/Java_Programming/Syntax/Unicode_Escape_Sequences" rel="nofollow">Unicode escape sequences</a> (\uxxxx). While this would allow you to save your file, it is not necessarily the best solution.</p>
<p>For the characters you specified in your question here are the Unicode escape sequences:</p>
<pre><code>♥ \u2665
♦ \u2666
♣ \u2663
♠ \u2660
</code></pre>
http://stackoverflow.com/questions/200691/how-to-use-special-chars-in-java-eclipse/200717#2007172Answer by idrosid for How to use Special Chars in Java/Eclipseidrosid2008-10-14T10:56:35Z2008-10-14T10:56:35Z<p>At the menu select <strong>File-->Properties</strong> and then at the <strong>"Text File Encoding"</strong> section select "other" and UTF-8</p>
<p>This will allow you to save unicode characters. You might have to remove the characters, save the file and then add them again (that's because to change the properties you need to save the file, but you cannot save it until you have changed the properties).</p>
<p>If you want to make this change for all your project go at <strong>Window-->Preferences-->General-->Workspace</strong> and do the same (encoding=UTF-8).</p>
http://stackoverflow.com/questions/200691/how-to-use-special-chars-in-java-eclipse/200801#2008012Answer by MSalters for How to use Special Chars in Java/EclipseMSalters2008-10-14T11:37:41Z2008-10-14T11:37:41Z<p>Finding the unicode escape sequence: see these <a href="http://www.macchiato.com/unicode/chart/" rel="nofollow">Unicode charts</a>. Your characters are in the Misc. Symbols chart, \u2660 and up.</p>
http://stackoverflow.com/questions/200691/how-to-use-special-chars-in-java-eclipse/543036#5430364Answer by Sepehr Lajevardi for How to use Special Chars in Java/EclipseSepehr Lajevardi2009-02-12T20:13:39Z2009-02-12T20:13:39Z<p>Go to "Windows > Preferences > General > Content Types > Text > {Choose file type}
{Selected file type} > Default encoding > UTF-8 and click Update button.</p>