C:
char c = '\u2252';
printf("%c\n", c); // Output: ≒
JavaScript:
const char = '\u2252';
console.log(char); // Output: ≒
Java:
char c = '\u2252';
System.out.println(c); // Output: ≒
JSON:
{"text": "\u2252"} // Value: ≒
Python:
char = '\u2252'
print(char) # Output: ≒
Perl:
my $char = "\x{2252}";
print $char; # Output: ≒
PHP:
$char = "\x{2252}";
echo $char; // Output: ≒
Ruby:
char = "\u{2252}"
puts char # Output: ≒
Rust:
let c = '\u{2252}';
println!("{}", c); // Output: ≒
Go:
char := '\u2252'
fmt.Printf("%c\n", char) // Output: ≒
CSS:
/* CSS content property */
.element::before {
content: "\002252"; /* 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%89%92
MD5:
2b251854442715a24816ba4ddbd25a2e
SHA1:
a914b8de446d30bd4419623c69aa93c2092bc162
Base64:
4omS