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