Unicode Finder

"±" U+00B1(PLUS-MINUS SIGN)

±
U+00B1
Block Name
Latin-1 Supplement
Name
PLUS-MINUS SIGN

Programming

C
\u00B1
JavaScript
\u00B1
Java
\u00B1
Json
\u00B1
Python
\u00B1
Perl
\x{00B1}
PHP
\x{00B1}
Ruby
\u{00B1}
Rust
\u{B1}
Go
\u00B1

Web

CSS
\0000B1
HtmlDecimal
±
HtmlHexadecimal
±
Url
%C2%B1

Code

MD5
dc9505c7e13e00185dcfcdc9e311fbfc
Sha1
4c2077d1d8351b5c6c63c8c2cfe0f2cad475ee3d
Base64
wrE=

Usage Examples

Programming Languages

C:

char c = '\u00B1';
printf("%c\n", c);  // Output: ±

JavaScript:

const char = '\u00B1';
console.log(char);  // Output: ±

Java:

char c = '\u00B1';
System.out.println(c);  // Output: ±

JSON:

{"text": "\u00B1"}  // Value: ±

Python:

char = '\u00B1'
print(char)  # Output: ±

Perl:

my $char = "\x{00B1}";
print $char;  # Output: ±

PHP:

$char = "\x{00B1}";
echo $char;  // Output: ±

Ruby:

char = "\u{00B1}"
puts char  # Output: ±

Rust:

let c = '\u{B1}';
println!("{}", c);  // Output: ±

Go:

char := '\u00B1'
fmt.Printf("%c\n", char)  // Output: ±

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0000B1";  /* Display: ± */
}

HTML Decimal:

<p>HTML decimal: &#177;</p>  <!-- Display: ± -->

HTML Hexadecimal:

<p>HTML hex: &#x00B1;</p>  <!-- Display: ± -->

URL Encoding:

// ± URL encoding
https://unicodefinder.com/search.php?query=%C2%B1

Encodings

MD5:

dc9505c7e13e00185dcfcdc9e311fbfc

SHA1:

4c2077d1d8351b5c6c63c8c2cfe0f2cad475ee3d

Base64:

wrE=