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