C:
char c = '\u2247';
printf("%c\n", c); // Output: ≇
JavaScript:
const char = '\u2247';
console.log(char); // Output: ≇
Java:
char c = '\u2247';
System.out.println(c); // Output: ≇
JSON:
{"text": "\u2247"} // Value: ≇
Python:
char = '\u2247'
print(char) # Output: ≇
Perl:
my $char = "\x{2247}";
print $char; # Output: ≇
PHP:
$char = "\x{2247}";
echo $char; // Output: ≇
Ruby:
char = "\u{2247}"
puts char # Output: ≇
Rust:
let c = '\u{2247}';
println!("{}", c); // Output: ≇
Go:
char := '\u2247'
fmt.Printf("%c\n", char) // Output: ≇
CSS:
/* CSS content property */
.element::before {
content: "\002247"; /* 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%87
MD5:
f96cc8c285615b4b655700f8d2b2846a
SHA1:
d04e6fa4a9428f2472378ed22a9b58f2592a2437
Base64:
4omH