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