C:
char c = '\u1EC7';
printf("%c\n", c); // Output: ệ
JavaScript:
const char = '\u1EC7';
console.log(char); // Output: ệ
Java:
char c = '\u1EC7';
System.out.println(c); // Output: ệ
JSON:
{"text": "\u1EC7"} // Value: ệ
Python:
char = '\u1EC7'
print(char) # Output: ệ
Perl:
my $char = "\x{1EC7}";
print $char; # Output: ệ
PHP:
$char = "\x{1EC7}";
echo $char; // Output: ệ
Ruby:
char = "\u{1EC7}"
puts char # Output: ệ
Rust:
let c = '\u{1EC7}';
println!("{}", c); // Output: ệ
Go:
char := '\u1EC7'
fmt.Printf("%c\n", char) // Output: ệ
CSS:
/* CSS content property */
.element::before {
content: "\001EC7"; /* 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%87
MD5:
388d0598a72f511557582fe6555f5d72
SHA1:
f1e77d14bc2f3f5d1b566ae63c8e5036bccb60a5
Base64:
4buH