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