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