C:
char c = '\u0045';
printf("%c\n", c); // Output: E
JavaScript:
const char = '\u0045';
console.log(char); // Output: E
Java:
char c = '\u0045';
System.out.println(c); // Output: E
JSON:
{"text": "\u0045"} // Value: E
Python:
char = '\u0045'
print(char) # Output: E
Perl:
my $char = "\x{0045}";
print $char; # Output: E
PHP:
$char = "\x{0045}";
echo $char; // Output: E
Ruby:
char = "\u{0045}"
puts char # Output: E
Rust:
let c = '\u{45}';
println!("{}", c); // Output: E
Go:
char := '\u0045'
fmt.Printf("%c\n", char) // Output: E
CSS:
/* CSS content property */
.element::before {
content: "\000045"; /* 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:
3a3ea00cfc35332cedf6e5e9a32e94da
SHA1:
e0184adedf913b076626646d3f52c3b49c39ad6d
Base64:
RQ==