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