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