Back
Asciify Logo
Asciify

Latin Small Letter I

One of only two basic Latin lowercase letters — alongside 'j' — to carry a default diacritical mark (the dot above, known as a tittle), lowercase 'i' is the ninth letter of the alphabet and a high-frequency vowel accounting for roughly 7.0 % of characters in typical English corpora. It sits at ASCII code point 105 (0x69), 32 above its uppercase counterpart 'I' at 73 (0x49), maintaining the single-bit case offset (bit 5) shared by all ASCII A–Z / a–z pairs. Outside natural language, it is arguably the single most recognizable variable name in source code.

Latin Letter

Technical Details

Code Example

</>
// Classic loop with 'i' index
for (int i = 0; i < 10; i++) {
printf("%d ", i);
}
// Output: 0 1 2 3 4 5 6 7 8 9

Common Usage

  • Canonical loop counter: In most mainstream programming languages, 'i' is the conventional iteration variable — for(int i = 0; …) — a practice tracing back to Fortran, where variables starting with i through n defaulted to integer type. This widespread adoption makes it one of the most typed single characters in source code.

  • Turkish locale case-mapping: In most locales, 'i' and 'I' form a straightforward pair, but Turkish and Azerbaijani introduce a separate dotless lowercase 'ı' and dotted uppercase 'İ', creating a four-way mapping. This is a well-documented source of bugs in locale-sensitive string operations — 'i'.toUpperCase() yields 'İ' rather than 'I' under Turkish locale rules.

  • Mathematical notation: In mathematics, italic 𝑖 conventionally denotes the imaginary unit (√−1), forming the basis of complex number notation (a + bi). In electrical engineering, 'j' often takes this role to avoid collision with the symbol for current (I), though the mathematical convention remains standard in pure mathematics and physics.

  • Diacritical variants: As a vowel, 'i' supports a broad array of accented forms — í (acute), ì (grave), î (circumflex), ï (diaeresis), ī (macron), ĩ (tilde), į (ogonek) — used across Romance, Baltic, and Polynesian orthographies. The Turkish dotless ı is classified as a separate letter rather than a diacritical variant of 'i'.

  • Canonical loop counter: In most mainstream programming languages, 'i' is the conventional iteration variable — for(int i = 0; …) — a practice tracing back to Fortran, where variables starting with i through n defaulted to integer type. This widespread adoption makes it one of the most typed single characters in source code.

  • Turkish locale case-mapping: In most locales, 'i' and 'I' form a straightforward pair, but Turkish and Azerbaijani introduce a separate dotless lowercase 'ı' and dotted uppercase 'İ', creating a four-way mapping. This is a well-documented source of bugs in locale-sensitive string operations — 'i'.toUpperCase() yields 'İ' rather than 'I' under Turkish locale rules.

  • Mathematical notation: In mathematics, italic 𝑖 conventionally denotes the imaginary unit (√−1), forming the basis of complex number notation (a + bi). In electrical engineering, 'j' often takes this role to avoid collision with the symbol for current (I), though the mathematical convention remains standard in pure mathematics and physics.

  • Diacritical variants: As a vowel, 'i' supports a broad array of accented forms — í (acute), ì (grave), î (circumflex), ï (diaeresis), ī (macron), ĩ (tilde), į (ogonek) — used across Romance, Baltic, and Polynesian orthographies. The Turkish dotless ı is classified as a separate letter rather than a diacritical variant of 'i'.

@workani&@alexluthor
Privacy & legal

Privacy

No accounts, no ads, no tracking cookies, and no cross-site tracking. The only analytics we keep are faceless — anonymous, aggregated counts of pages and searches, never tied to you. We store no IP addresses, set no tracking cookies, and build no profiles. Cloudflare hosts the site and handles requests for delivery and security.

Full privacy policy·Extension privacy·legal@asciify.dev

Attributions & licenses

Twemoji
© Twitter, Inc and other contributors · CC-BY 4.0
Noto Color Emoji
© Google · Apache 2.0
Fluent UI Emoji
© Microsoft · MIT
OpenMoji
© HfG Schwäbisch Gmünd · CC-BY-SA 4.0
Toss Face
© Viva Republica (Toss) · SIL OFL 1.1
JoyPixels
© JoyPixels Inc. · Free Limited Use License
SerenityOS Emoji
© The SerenityOS Developers · BSD-2-Clause
EmojiTwo
© EmojiTwo contributors · CC-BY 4.0
Apple Color Emoji
© Apple, Inc.
Facebook Emoji
© Meta Platforms, Inc.

Apple and Facebook emoji styles are proprietary and shown here solely for reference and comparison — a common-sense application of nominative-use / fair-use principles. asciify is not affiliated with, endorsed by, or sponsored by Apple, Inc., Meta Platforms, Inc., or any other rights holder listed above. If a rights holder requests removal of their emoji style from this site, it will be removed.

All other vendor emoji are reproduced for reference and comparison under their respective open licenses listed above.

Character names and code points from the Unicode® Standard. Unicode® and the Unicode Logo are registered trademarks of Unicode, Inc.

Privacy
© asciify.dev 2025-2026