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