C:
char c = '\u1EE9';
printf("%c\n", c); // Output: ứ
JavaScript:
const char = '\u1EE9';
console.log(char); // Output: ứ
Java:
char c = '\u1EE9';
System.out.println(c); // Output: ứ
JSON:
{"text": "\u1EE9"} // Value: ứ
Python:
char = '\u1EE9'
print(char) # Output: ứ
Perl:
my $char = "\x{1EE9}";
print $char; # Output: ứ
PHP:
$char = "\x{1EE9}";
echo $char; // Output: ứ
Ruby:
char = "\u{1EE9}"
puts char # Output: ứ
Rust:
let c = '\u{1EE9}';
println!("{}", c); // Output: ứ
Go:
char := '\u1EE9'
fmt.Printf("%c\n", char) // Output: ứ
CSS:
/* CSS content property */
.element::before {
content: "\001EE9"; /* 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%BB%A9
MD5:
8bf697f19682f8a4f5b93a3c94898cee
SHA1:
32edf9a7d5832a2fce545224efbcd96162e14b73
Base64:
4bup