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