C:
char c = '\u0113';
printf("%c\n", c); // Output: ē
JavaScript:
const char = '\u0113';
console.log(char); // Output: ē
Java:
char c = '\u0113';
System.out.println(c); // Output: ē
JSON:
{"text": "\u0113"} // Value: ē
Python:
char = '\u0113'
print(char) # Output: ē
Perl:
my $char = "\x{0113}";
print $char; # Output: ē
PHP:
$char = "\x{0113}";
echo $char; // Output: ē
Ruby:
char = "\u{0113}"
puts char # Output: ē
Rust:
let c = '\u{113}';
println!("{}", c); // Output: ē
Go:
char := '\u0113'
fmt.Printf("%c\n", char) // Output: ē
CSS:
/* CSS content property */
.element::before {
content: "\000113"; /* 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=%C4%93
MD5:
f788fdbd9eb05cf8211923192abcb267
SHA1:
a5f1750524c06203522a255b8cb032031c878154
Base64:
xJM=