Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to get the character ± in a string?

share|improve this question
7  
Just paste it in? How did you get it into your StackOverflow question? – Matt Ball Oct 26 '10 at 16:34
4  
you just did it ... – remi bourgarel Oct 26 '10 at 16:34
1  
Have you tried just putting that symbol in the string? If that doesn't work, try figuring out the Unicode value of that character and put it in using \uXXXX. – robbrit Oct 26 '10 at 16:34
@Matt, remi, robbrit: The problem with just putting the symbol in a literal string is that you will then depend on the platform encoding. Try to compile the same source file with literals strings containing non-ASCII characters in Windows and Linux and things will get funny. – Grodriguez Oct 26 '10 at 16:41
At first I also thought I was an incomplete question but then I read the tag. And for the first time tag was actually the part of question. – Amit S Oct 26 '10 at 16:45
show 4 more comments

4 Answers

up vote 12 down vote accepted

Use Unicode: \u00B1:

System.out.println("Hello \u00B1 world");

Prints:

Hello ± world
share|improve this answer
And if ever you don't know the Unicode code point for something, Google does. "unicode plus minus" --> fileformat.info/info/unicode/char/b1/index.htm – Alan Krueger Oct 26 '10 at 17:07
Thank you very much......Grodriguez – praveenb Oct 26 '10 at 17:21
1  
@Alan Krueger: Googling "unicode plus minus" is a silly advice. It ain't very useful when you don't know the name of the character you're looking at. Like this one, for example, how would you Google it? ' ҉'. That's when a cut/paste and Un*x commands like hexdump and file are useful ;) Now of course you can cut/paste that character in Google and you'll find out, but suggesting to search for such characters using text like "unicode plus minus" just doesn't make much sense. – SyntaxT3rr0r Oct 26 '10 at 17:42
1  
unicode.org/charts – starblue Oct 26 '10 at 20:13
@Webinator You can come up with counter-examples, but for someone who doesn't know where to look it's remarkably effective. – Alan Krueger Oct 26 '10 at 20:55

Put this into your string: \u00B1

Source

share|improve this answer

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.

share|improve this answer

(Prerequisite: source file must be properly encoded in utf8/utf16/unicode)

Nothing simpler than that:

string s = "±";

Note that java strings and identifiers are always encoded in utf16, so this is natively supported.

share|improve this answer
Since I can't always guarantee what happens to the source after it's been written, and file systems don't generally treat character encoding as a first-class attribute of the file, if it's outside Latin-1 I typically use a Unicode escape. It seems safer that way. – Alan Krueger Oct 26 '10 at 17:09
Prerequisite? You can specify the encoding with javac? javac -encoding Cp1252 for example. (I would not recommend this...) – Ishtar Oct 26 '10 at 17:10
but people having UTF-8 or UTF-16 .java source file should be shot! Here we have developers on Windows, Linux and OS X AND our build script enforces that every single .java file is ASCII-only. Why? Experience. Plain and simple. – SyntaxT3rr0r Oct 26 '10 at 17:47
5  
@Webinator: no, people using tools that don't support UTF-8 should be shot. Why? Experience. Plain and simple. – Tom Anderson Oct 26 '10 at 17:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.