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