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