C:
char c = '\uA964';
printf("%c\n", c); // Output: ꥤ
JavaScript:
const char = '\uA964';
console.log(char); // Output: ꥤ
Java:
char c = '\uA964';
System.out.println(c); // Output: ꥤ
JSON:
{"text": "\uA964"} // Value: ꥤ
Python:
char = '\uA964'
print(char) # Output: ꥤ
Perl:
my $char = "\x{A964}";
print $char; # Output: ꥤ
PHP:
$char = "\x{A964}";
echo $char; // Output: ꥤ
Ruby:
char = "\u{A964}"
puts char # Output: ꥤ
Rust:
let c = '\u{A964}';
println!("{}", c); // Output: ꥤ
Go:
char := '\uA964'
fmt.Printf("%c\n", char) // Output: ꥤ
CSS:
/* CSS content property */
.element::before {
content: "\00A964"; /* 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%A5%A4
MD5:
3682292bac56b8e8b0d580c90556ad6c
SHA1:
6723bd38883d84ebd26fc5444bd1579d595eb87d
Base64:
6qWk