C:
char c = '\u2EE3';
printf("%c\n", c); // Output: ⻣
JavaScript:
const char = '\u2EE3';
console.log(char); // Output: ⻣
Java:
char c = '\u2EE3';
System.out.println(c); // Output: ⻣
JSON:
{"text": "\u2EE3"} // Value: ⻣
Python:
char = '\u2EE3'
print(char) # Output: ⻣
Perl:
my $char = "\x{2EE3}";
print $char; # Output: ⻣
PHP:
$char = "\x{2EE3}";
echo $char; // Output: ⻣
Ruby:
char = "\u{2EE3}"
puts char # Output: ⻣
Rust:
let c = '\u{2EE3}';
println!("{}", c); // Output: ⻣
Go:
char := '\u2EE3'
fmt.Printf("%c\n", char) // Output: ⻣
CSS:
/* CSS content property */
.element::before {
content: "\002EE3"; /* 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%BB%A3
MD5:
44381510f0da4c212ea5f7380a91cae0
SHA1:
6a53fd0eb325ef1bf9dd4a65b17f98ea9fd459a3
Base64:
4ruj