i

ASCII Character: Lowercase i

ASCII Code 105 · Unicode U+0069 · Hex 0x69

i lowercase-i

About the Lowercase i Character

ASCII code 105 (0x69) represents the Lowercase i character "i". The lowercase letter "i" has ASCII code 105. Lowercase letters a–z span codes 97–122. Subtracting 32 from a lowercase letter’s ASCII code gives the corresponding uppercase letter (e.g., 'a' at 97 - 32 = 'A' at 65). 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.

Encoding Details

ASCII Code 105
Hexadecimal 0x69
Octal 151
Binary 01101001
Unicode U+0069
Unicode Name LATIN SMALL LETTER I
HTML Numeric i
HTML Entity
URL Escape %69
UTF-8 (Hex) 69
Quoted-Printable i

Source Code Examples

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

Navigate

Copied!