C:
char c = '\u2262';
printf("%c\n", c); // Output: ≢
JavaScript:
const char = '\u2262';
console.log(char); // Output: ≢
Java:
char c = '\u2262';
System.out.println(c); // Output: ≢
JSON:
{"text": "\u2262"} // Value: ≢
Python:
char = '\u2262'
print(char) # Output: ≢
Perl:
my $char = "\x{2262}";
print $char; # Output: ≢
PHP:
$char = "\x{2262}";
echo $char; // Output: ≢
Ruby:
char = "\u{2262}"
puts char # Output: ≢
Rust:
let c = '\u{2262}';
println!("{}", c); // Output: ≢
Go:
char := '\u2262'
fmt.Printf("%c\n", char) // Output: ≢
CSS:
/* CSS content property */
.element::before {
content: "\002262"; /* 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%A2
MD5:
86a2246d16759746f085d4d782002afe
SHA1:
3c2169ed8d6221b32c8e75626c181edd432f5b52
Base64:
4omi