C:
char c = '\u0116';
printf("%c\n", c); // Output: Ė
JavaScript:
const char = '\u0116';
console.log(char); // Output: Ė
Java:
char c = '\u0116';
System.out.println(c); // Output: Ė
JSON:
{"text": "\u0116"} // Value: Ė
Python:
char = '\u0116'
print(char) # Output: Ė
Perl:
my $char = "\x{0116}";
print $char; # Output: Ė
PHP:
$char = "\x{0116}";
echo $char; // Output: Ė
Ruby:
char = "\u{0116}"
puts char # Output: Ė
Rust:
let c = '\u{116}';
println!("{}", c); // Output: Ė
Go:
char := '\u0116'
fmt.Printf("%c\n", char) // Output: Ė
CSS:
/* CSS content property */
.element::before {
content: "\000116"; /* 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%96
MD5:
4f56534b9ea8fa558525ba1a12ceefd0
SHA1:
cd764937bd437a67be66bf60867f4eedee04dc1f
Base64:
xJY=