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