C:
char c = '\u0117';
printf("%c\n", c); // Output: ė
JavaScript:
const char = '\u0117';
console.log(char); // Output: ė
Java:
char c = '\u0117';
System.out.println(c); // Output: ė
JSON:
{"text": "\u0117"} // Value: ė
Python:
char = '\u0117'
print(char) # Output: ė
Perl:
my $char = "\x{0117}";
print $char; # Output: ė
PHP:
$char = "\x{0117}";
echo $char; // Output: ė
Ruby:
char = "\u{0117}"
puts char # Output: ė
Rust:
let c = '\u{117}';
println!("{}", c); // Output: ė
Go:
char := '\u0117'
fmt.Printf("%c\n", char) // Output: ė
CSS:
/* CSS content property */
.element::before {
content: "\000117"; /* 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%97
MD5:
654e48f5b942fbf318b3e9f4f27fb16b
SHA1:
9bb3e7343ee9fdc44773b4d26de13b35375b07b5
Base64:
xJc=