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