ASCII 69
Latin Capital Letter E (E)
Printable ASCII
Uppercase letter E.
All encodings at a glance
| Decimal | 69 |
| Hexadecimal | 0x45 |
| Octal | 0105 |
| Binary | 01000101 |
| HTML numeric entity | E |
| URL encoding | %45 |
| UTF-8 bytes | 0x45 |
Code snippets
JavaScript
String.fromCharCode(69); // "E"
69.toString(16); // "45"Python
chr(69) # 'E'
ord(chr(69)) # 69
hex(69) # '0x45'HTML
E <!-- numeric entity (no named entity for this character) -->