Back
Asciify Logo
Asciify

Latin Capital Letter I

Unique among English letters, uppercase 'I' doubles as a complete word — the first-person singular pronoun — making it the only single-letter word that is always capitalized regardless of position. It sits at ASCII code point 73 (0x49), exactly 32 below its lowercase counterpart 'i' at 105 (0x69), maintaining the single-bit case offset (bit 5) shared by all ASCII A–Z / a–z pairs. As the ninth letter of the Latin alphabet, 'I' ranks among the more frequently occurring uppercase characters in typical English corpora, heavily inflated by its pronominal role.

Latin Letter

Technical Details

Code Example

</>
// Classic loop with 'i' index
for (int i = 0; i < 10; i++) {
printf("%d\n", i);
}

Common Usage

  • Typographic ambiguity: Uppercase 'I' is one of the narrowest glyphs in most typefaces and is notoriously easy to confuse with lowercase 'l' and the digit '1' in sans-serif fonts. This is a well-known readability concern in programming and UI design, and many coding fonts — such as JetBrains Mono and Fira Code — add distinguishing serifs or hooks to resolve the three-way ambiguity.

  • The Turkish-I problem: Turkish distinguishes between dotted İ/i and dotless I/ı, meaning that uppercasing 'i' yields 'İ' (not 'I') and lowercasing 'I' yields 'ı' (not 'i') under Turkish locale rules. This is a classic internationalization pitfall in software — naive case-insensitive comparisons using English rules can cause bugs in Turkish-locale contexts, and most modern language standard libraries offer locale-aware casing APIs to handle it.

  • Format specifier and constants: In C-family printf-style formatting, '%i' is synonymous with '%d' for formatting signed decimal integers; the uppercase letter itself does not serve as a specifier. In electrical engineering, 'I' is the standard symbol for electric current (from French intensité), appearing throughout circuit diagrams, Ohm's law expressions, and datasheets.

  • Diacritical variants: Uppercase 'I' supports numerous accented forms — Ì, Í, Î, Ï, Ī, Į, and İ among them. In Turkish and Azerbaijani, İ (dot above) is a distinct letter contrasting with dotless I, creating a four-way case mapping unique among Latin-script languages. Ị (dot below) appears in Vietnamese, and Ɨ (stroke) is used in several African language orthographies as a separate vowel letter.

  • Typographic ambiguity: Uppercase 'I' is one of the narrowest glyphs in most typefaces and is notoriously easy to confuse with lowercase 'l' and the digit '1' in sans-serif fonts. This is a well-known readability concern in programming and UI design, and many coding fonts — such as JetBrains Mono and Fira Code — add distinguishing serifs or hooks to resolve the three-way ambiguity.

  • The Turkish-I problem: Turkish distinguishes between dotted İ/i and dotless I/ı, meaning that uppercasing 'i' yields 'İ' (not 'I') and lowercasing 'I' yields 'ı' (not 'i') under Turkish locale rules. This is a classic internationalization pitfall in software — naive case-insensitive comparisons using English rules can cause bugs in Turkish-locale contexts, and most modern language standard libraries offer locale-aware casing APIs to handle it.

  • Format specifier and constants: In C-family printf-style formatting, '%i' is synonymous with '%d' for formatting signed decimal integers; the uppercase letter itself does not serve as a specifier. In electrical engineering, 'I' is the standard symbol for electric current (from French intensité), appearing throughout circuit diagrams, Ohm's law expressions, and datasheets.

  • Diacritical variants: Uppercase 'I' supports numerous accented forms — Ì, Í, Î, Ï, Ī, Į, and İ among them. In Turkish and Azerbaijani, İ (dot above) is a distinct letter contrasting with dotless I, creating a four-way case mapping unique among Latin-script languages. Ị (dot below) appears in Vietnamese, and Ɨ (stroke) is used in several African language orthographies as a separate vowel letter.

@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