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