C:
char c = '\uA21F';
printf("%c\n", c); // Output: ꈟ
JavaScript:
const char = '\uA21F';
console.log(char); // Output: ꈟ
Java:
char c = '\uA21F';
System.out.println(c); // Output: ꈟ
JSON:
{"text": "\uA21F"} // Value: ꈟ
Python:
char = '\uA21F'
print(char) # Output: ꈟ
Perl:
my $char = "\x{A21F}";
print $char; # Output: ꈟ
PHP:
$char = "\x{A21F}";
echo $char; // Output: ꈟ
Ruby:
char = "\u{A21F}"
puts char # Output: ꈟ
Rust:
let c = '\u{A21F}';
println!("{}", c); // Output: ꈟ
Go:
char := '\uA21F'
fmt.Printf("%c\n", char) // Output: ꈟ
CSS:
/* CSS content property */
.element::before {
content: "\00A21F"; /* 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=%EA%88%9F
MD5:
e6dfe1a2f9d8ece7ace68ed71bf1769f
SHA1:
908723fceef389a3e43290a37570b85383bfec25
Base64:
6oif