C:
char c = '\u0065';
printf("%c\n", c); // Output: e
JavaScript:
const char = '\u0065';
console.log(char); // Output: e
Java:
char c = '\u0065';
System.out.println(c); // Output: e
JSON:
{"text": "\u0065"} // Value: e
Python:
char = '\u0065'
print(char) # Output: e
Perl:
my $char = "\x{0065}";
print $char; # Output: e
PHP:
$char = "\x{0065}";
echo $char; // Output: e
Ruby:
char = "\u{0065}"
puts char # Output: e
Rust:
let c = '\u{65}';
println!("{}", c); // Output: e
Go:
char := '\u0065'
fmt.Printf("%c\n", char) // Output: e
CSS:
/* CSS content property */
.element::before {
content: "\000065"; /* Display: e */
}
HTML Decimal:
<p>HTML decimal: e</p> <!-- Display: e -->
HTML Hexadecimal:
<p>HTML hex: e</p> <!-- Display: e -->
URL Encoding:
// e URL encoding
https://unicodefinder.com/search.php?query=e
MD5:
e1671797c52e15f763380b45e841ec32
SHA1:
58e6b3a414a1e090dfc6029add0f3555ccba127f
Base64:
ZQ==