How to get the character ± in a string?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Use Unicode:
Prints:
|
|||||||||||||||
|
|
If you are on Linux system you can find hex codes for almost all the symbol using man pages iso_8859-1(7), iso_8859-10(7), iso_8859-13(7), iso_8859-14(7), iso_8859-15(7), iso_8859-16(7), iso_8859-2(7), iso_8859-3(7), iso_8859-4(7), iso_8859-5(7), iso_8859-6(7), iso_8859-7(7), iso_8859-8(7), iso_8859-9(7). There you will find that the hex code for ± is B1. There!! you have it now. |
|||
|
|
|
(Prerequisite: source file must be properly encoded in utf8/utf16/unicode) Nothing simpler than that:
Note that java strings and identifiers are always encoded in utf16, so this is natively supported. |
|||||||||||
|