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