C:
char c = '\u2212';
printf("%c\n", c); // Output: −
JavaScript:
const char = '\u2212';
console.log(char); // Output: −
Java:
char c = '\u2212';
System.out.println(c); // Output: −
JSON:
{"text": "\u2212"} // Value: −
Python:
char = '\u2212'
print(char) # Output: −
Perl:
my $char = "\x{2212}";
print $char; # Output: −
PHP:
$char = "\x{2212}";
echo $char; // Output: −
Ruby:
char = "\u{2212}"
puts char # Output: −
Rust:
let c = '\u{2212}';
println!("{}", c); // Output: −
Go:
char := '\u2212'
fmt.Printf("%c\n", char) // Output: −
CSS:
/* CSS content property */
.element::before {
content: "\002212"; /* 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=%E2%88%92
MD5:
5499493768447afb7e8fc8f1af32eb51
SHA1:
6a4e6e729f96b07652599ea183dcceac72cdf70f
Base64:
4oiS