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