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