C:
char c = '\u1EA4';
printf("%c\n", c); // Output: Ấ
JavaScript:
const char = '\u1EA4';
console.log(char); // Output: Ấ
Java:
char c = '\u1EA4';
System.out.println(c); // Output: Ấ
JSON:
{"text": "\u1EA4"} // Value: Ấ
Python:
char = '\u1EA4'
print(char) # Output: Ấ
Perl:
my $char = "\x{1EA4}";
print $char; # Output: Ấ
PHP:
$char = "\x{1EA4}";
echo $char; // Output: Ấ
Ruby:
char = "\u{1EA4}"
puts char # Output: Ấ
Rust:
let c = '\u{1EA4}';
println!("{}", c); // Output: Ấ
Go:
char := '\u1EA4'
fmt.Printf("%c\n", char) // Output: Ấ
CSS:
/* CSS content property */
.element::before {
content: "\001EA4"; /* 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=%E1%BA%A4
MD5:
06b5b63d89686d6a6c597f68e1bd6b2f
SHA1:
bbcf0c681b436f25cd094ad5fe6486de10730a44
Base64:
4bqk