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