C:
char c = '\u2253';
printf("%c\n", c); // Output: ≓
JavaScript:
const char = '\u2253';
console.log(char); // Output: ≓
Java:
char c = '\u2253';
System.out.println(c); // Output: ≓
JSON:
{"text": "\u2253"} // Value: ≓
Python:
char = '\u2253'
print(char) # Output: ≓
Perl:
my $char = "\x{2253}";
print $char; # Output: ≓
PHP:
$char = "\x{2253}";
echo $char; // Output: ≓
Ruby:
char = "\u{2253}"
puts char # Output: ≓
Rust:
let c = '\u{2253}';
println!("{}", c); // Output: ≓
Go:
char := '\u2253'
fmt.Printf("%c\n", char) // Output: ≓
CSS:
/* CSS content property */
.element::before {
content: "\002253"; /* 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%93
MD5:
ae4f6cfc398057f326aacf0682be8904
SHA1:
97c00f4c92a08f68fb1138c3306e45fe04d833b0
Base64:
4omT