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: ±
CSS:
/* CSS content property */
.element::before {
content: "\0000B1"; /* Display: ± */
}
HTML Decimal:
<p>HTML decimal: ±</p> <!-- Display: ± -->
HTML Hexadecimal:
<p>HTML hex: ±</p> <!-- Display: ± -->
URL Encoding:
// ± URL encoding
https://unicodefinder.com/search.php?query=%C2%B1
MD5:
dc9505c7e13e00185dcfcdc9e311fbfc
SHA1:
4c2077d1d8351b5c6c63c8c2cfe0f2cad475ee3d
Base64:
wrE=