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