DevKits

ASCII 105

Latin Small Letter I (i)

Printable ASCII

Lowercase letter i. ASCII code 105. The canonical loop counter. Confusable with 'l' and '1' in some fonts.

Common uses & context

Thelowercase letter 'i' has ASCII code 105 (0x69). Its uppercase twin 'I' sits exactly 32 code points away at 73. That constant gap of 32 — a single bit, 0x20 — is why changing letter case is one of the cheapest operations a CPU can do: you flip or mask one bit rather than looking anything up. Lowercase letter i. ASCII code 105. The canonical loop counter. Confusable with 'l' and '1' in some fonts.

The lowercase Latin letters form the contiguous block 97–122, so range checks like c >= 'a' && c <= 'z' work without a lookup table. To convert 'i' to its uppercase form youclear bit 5: 'i' & ~0x20 gives 'I'. Because uppercase (65–90) sorts before lowercase (97–122) in raw byte order, naive sorting places every capitalized wordahead of every lowercase one — the reason "Zebra" comes before "apple" unless you sort case-insensitively.

All encodings at a glance

Decimal105
Hexadecimal0x69
Octal0151
Binary01101001
HTML numeric entity&#105;
URL encoding%69
UTF-8 bytes0x69

Code snippets

JavaScript

String.fromCharCode(105); // "i"
105.toString(16); // "69"

Python

chr(105)           # 'i'
ord(chr(105))      # 105
hex(105)           # '0x69'

HTML

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

Programming notes

  • Case toggle: 'i' & ~0x20 = 'I' (a single-bit change).
  • Letter test: c >= 'a' && c <= 'z' — the lowercase block is contiguous (97–122).

Frequently asked questions

What character is ASCII code 105?

ASCII code 105 is the character 'i' (Latin Small Letter I). In hexadecimal it is 0x69, in octal 0151, and in binary 01101001.

What is 0x69 in ASCII?

Hexadecimal 0x69 equals decimal 105, which is the character 'i' (Latin Small Letter I). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0x69 = 105) and look up that code point.

How do I write the character with code 105 in code?

In JavaScript use String.fromCharCode(105); in Python use chr(105); in HTML use the numeric entity &#105;. In a URL it is percent-encoded as %69, and in UTF-8 it is stored as the byte sequence 0x69.

What is the uppercase form of 'i' in ASCII?

'i' is code 105; its uppercase counterpart 'I' is code 73. The two always differ by 32, so you can convert by subtracting 32 (or clearing bit 0x20).

Nearby codes

Encode & convert this character