C:
char c = '\u2258';
printf("%c\n", c); // Output: ≘
JavaScript:
const char = '\u2258';
console.log(char); // Output: ≘
Java:
char c = '\u2258';
System.out.println(c); // Output: ≘
JSON:
{"text": "\u2258"} // Value: ≘
Python:
char = '\u2258'
print(char) # Output: ≘
Perl:
my $char = "\x{2258}";
print $char; # Output: ≘
PHP:
$char = "\x{2258}";
echo $char; // Output: ≘
Ruby:
char = "\u{2258}"
puts char # Output: ≘
Rust:
let c = '\u{2258}';
println!("{}", c); // Output: ≘
Go:
char := '\u2258'
fmt.Printf("%c\n", char) // Output: ≘
CSS:
/* CSS content property */
.element::before {
content: "\002258"; /* 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%98
MD5:
a2b42f2c2ee33b241a8e4c143fe53f2b
SHA1:
1e96b8c1b19ff6e12f14c17207b8fd4349896738
Base64:
4omY