Back
Asciify Logo
Asciify

Latin Small Letter L

Few Latin letters create as many readability challenges as lowercase 'l', which in numerous typefaces is nearly indistinguishable from the digit '1' and uppercase 'I' — a visual ambiguity that has shaped coding conventions, typeface design, and style guide recommendations for decades. It is the twelfth letter of the Latin alphabet, a lateral approximant accounting for roughly 4.0 % of characters in typical English corpora. Its ASCII code point is 108 (0x6C), 32 above its uppercase counterpart 'L' at 76 (0x4C), maintaining the single-bit case offset (bit 5) shared by all ASCII A–Z / a–z pairs.

Latin Letter

Technical Details

Code Example

</>
// Long integer suffixes
long big = 1000000L;
long long bigger = 1000000000000LL;
unsigned long ul = 0xFFFFFFFFUL;

Common Usage

  • Typographic ambiguity: Lowercase 'l', digit '1', and uppercase 'I' converge to nearly identical glyphs in many sans-serif typefaces — a problem significant enough that Python's PEP 8 explicitly discourages using 'l' as a single-character variable name. Programming-oriented fonts such as Fira Code, JetBrains Mono, and Source Code Pro are specifically designed to differentiate these three characters.

  • Printf length modifier: In C-family printf-style formatting, 'l' acts as a length modifier for long types — %ld and %lu format long int and unsigned long, while %lld and %llu handle long long. Many languages also use 'L' or 'l' as a suffix for long integer literals, though uppercase 'L' is generally preferred precisely to avoid the l/1 visual confusion.

  • Dark and light allophones: English distinguishes between a 'clear' or 'light' /l/ (as in 'lip', before vowels) and a 'dark' or velarized /ɫ/ (as in 'full', after vowels or at syllable end) — a phonetic split that most native speakers produce unconsciously but that presents a notable challenge for learners whose languages use only one variant.

  • Diacritical variants: ł (stroke) is a distinct letter in Polish representing a /w/ sound, ľ (caron) appears in Slovak, ļ (cedilla) is used in Latvian, and ḷ (dot below) appears in IAST transliteration of Sanskrit — a moderately sized but linguistically significant set of modified forms.

  • Typographic ambiguity: Lowercase 'l', digit '1', and uppercase 'I' converge to nearly identical glyphs in many sans-serif typefaces — a problem significant enough that Python's PEP 8 explicitly discourages using 'l' as a single-character variable name. Programming-oriented fonts such as Fira Code, JetBrains Mono, and Source Code Pro are specifically designed to differentiate these three characters.

  • Printf length modifier: In C-family printf-style formatting, 'l' acts as a length modifier for long types — %ld and %lu format long int and unsigned long, while %lld and %llu handle long long. Many languages also use 'L' or 'l' as a suffix for long integer literals, though uppercase 'L' is generally preferred precisely to avoid the l/1 visual confusion.

  • Dark and light allophones: English distinguishes between a 'clear' or 'light' /l/ (as in 'lip', before vowels) and a 'dark' or velarized /ɫ/ (as in 'full', after vowels or at syllable end) — a phonetic split that most native speakers produce unconsciously but that presents a notable challenge for learners whose languages use only one variant.

  • Diacritical variants: ł (stroke) is a distinct letter in Polish representing a /w/ sound, ľ (caron) appears in Slovak, ļ (cedilla) is used in Latvian, and ḷ (dot below) appears in IAST transliteration of Sanskrit — a moderately sized but linguistically significant set of modified forms.

@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