I

ASCII Code 73

Uppercase I

About This Character

ASCII code 73 (0x49) represents the Uppercase I character "I". The uppercase letter "I" has ASCII code 73. 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 73
Octal 111
Hexadecimal 0x49
Binary 01001001
HTML Code I
HTML Entity
Unicode U+0049
Unicode Name LATIN CAPITAL LETTER I
URL Escape %49
Quoted-Printable I
UTF-8 (Hex) 49
Category Printable — Uppercase Letters

How to Type in Code

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

See Also

Copied!