How can I use/display characters like ♥, ♦, ♣, or ♠ in Java/Eclipse?
Wenn I try to use them directly, i.e. in the source code, Eclipse cannot save the file:

What can I do?
Edit: How can I find the unicode escape sequence?
|
1
|
|
|
|
|
|
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: Option 1. Change the encoding. According to IBM, you should set the encoding to UTF-8. I believe this would solve your problem.
Option 2. Remove the characters which are not supported by the "Cp1252" character encoding. You can replace the unsupported characters with Unicode escape sequences (\uxxxx). While this would allow you to save your file, it is not necessarily the best solution. For the characters you specified in your question here are the Unicode escape sequences:
|
||||||
|
|
|
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. |
||||
|
|
|
At the menu select File-->Properties and then at the "Text File Encoding" section select "other" and UTF-8 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). If you want to make this change for all your project go at Window-->Preferences-->General-->Workspace and do the same (encoding=UTF-8). |
||
|
|
|
|
Finding the unicode escape sequence: see these Unicode charts. Your characters are in the Misc. Symbols chart, \u2660 and up. |
||
|
|
|
|
Go to "Windows > Preferences > General > Content Types > Text > {Choose file type} {Selected file type} > Default encoding > UTF-8 and click Update button. |
||
|
|