C:
char c = '\uA90A';
printf("%c\n", c); // Output: ꤊ
JavaScript:
const char = '\uA90A';
console.log(char); // Output: ꤊ
Java:
char c = '\uA90A';
System.out.println(c); // Output: ꤊ
JSON:
{"text": "\uA90A"} // Value: ꤊ
Python:
char = '\uA90A'
print(char) # Output: ꤊ
Perl:
my $char = "\x{A90A}";
print $char; # Output: ꤊ
PHP:
$char = "\x{A90A}";
echo $char; // Output: ꤊ
Ruby:
char = "\u{A90A}"
puts char # Output: ꤊ
Rust:
let c = '\u{A90A}';
println!("{}", c); // Output: ꤊ
Go:
char := '\uA90A'
fmt.Printf("%c\n", char) // Output: ꤊ
CSS:
/* CSS content property */
.element::before {
content: "\00A90A"; /* 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%A4%8A
MD5:
125f9d0f8c2a46af3c2e9bc32ae496cf
SHA1:
6bb0f67f5ffd497cdb9ca5a3436d5a24059f5bfa
Base64:
6qSK