DevKits

ASCII 69

Latin Capital Letter E (E)

Printable ASCII

Uppercase letter E.

All encodings at a glance

Decimal69
Hexadecimal0x45
Octal0105
Binary01000101
HTML numeric entityE
URL encoding%45
UTF-8 bytes0x45

Code snippets

JavaScript

String.fromCharCode(69); // "E"
69.toString(16); // "45"

Python

chr(69)           # 'E'
ord(chr(69))      # 69
hex(69)           # '0x45'

HTML

&#69;   <!-- numeric entity (no named entity for this character) -->

Nearby codes