E

ASCII Code 69

Uppercase E

About This Character

ASCII code 69 (0x45) represents the Uppercase E character "E". The uppercase letter "E" has ASCII code 69. Uppercase letters A–Z span codes 65–90. The relationship between uppercase and lowercase ASCII letters is consistent: adding 32 to an uppercase letter’s code gives the corresponding lowercase letter (e.g., 'A' at 65 + 32 = 'a' at 97). The printable ASCII characters (codes 32–126) include the space, digits, uppercase and lowercase Latin letters, and common punctuation symbols. These 95 characters form the foundation of text representation in virtually all computing systems and are universally supported across all character encodings, programming languages, and operating systems.

Character Encoding

Decimal 69
Octal 105
Hexadecimal 0x45
Binary 01000101
HTML Code E
HTML Entity
Unicode U+0045
Unicode Name LATIN CAPITAL LETTER E
URL Escape %45
Quoted-Printable E
UTF-8 (Hex) 45
Category Printable — Uppercase Letters

How to Type in Code

JavaScript
// Character literal
let char = 'E';
// Using char code
let char2 = String.fromCharCode(69);
// Unicode escape
let char3 = '\x45';
Python
# Character literal
char = 'E'
# Using chr()
char = chr(69)
# Using ord() to get code
code = ord('E')  # Returns 69
HTML
<!-- Direct character -->
E
<!-- HTML entity (numeric) -->
&#69;
<!-- Hex entity -->
&#x45;
C#
// Character literal
char c = 'E';
// Using cast
char c2 = (char)69;
// To get code from char
int code = (int)'E';  // Returns 69

See Also

Copied!