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