HTML Entity for Lowercase I Dotless (ı)

What You'll Learn
How to display the lowercase dotless i (ı) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0131 in the Latin Extended-A block. It is not just a stylized i—it is a distinct letter in Turkish and Azerbaijani, and it appears in mathematical typography where accents must sit over the letter without a dot.
Render it with ı, ı, ı, or CSS escape \0131. The named entity ı is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase I Dotless Entity
U+0131Latin Extended-A
ıHexadecimal reference
ıDecimal reference
ıAlso known as ı
Name Value
──────────── ──────────
Unicode U+0131
Hex code ı
HTML code ı
Named entity ı (also ı)
CSS code \0131
Meaning Latin small letter dotless i
Related U+0130 = İ (dotted I, uppercase of i)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase dotless i (ı) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0131";
}
</style>
</head>
<body>
<p>Symbol (hex): ı</p>
<p>Symbol (decimal): ı</p>
<p>Symbol (named): ı</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase dotless i (ı) and the named entity ı are supported in modern browsers:
👀 Live Preview
See the lowercase dotless i (ı) in language and content contexts:
i (U+0069) — different letter, different meaning🧠 How It Works
Hexadecimal Code
ı uses the Unicode hexadecimal value 131 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ı uses the decimal Unicode value 305 to display the same character. A common method for Latin Extended-A characters.
Named Entity
ı is the standard named entity for ı—readable in source HTML. Some references also list ı for the same character.
CSS Entity
\0131 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ı. Unicode U+0131 sits in Latin Extended-A. In Turkish casing, lowercase ı uppercases to I (U+0049), and lowercase i uppercases to İ (U+0130). Do not confuse ı with dotted i (U+0069).
Use Cases
The lowercase dotless i (ı) is commonly used in:
ı is a distinct letter and must be represented correctly for spelling, search, and forms.
Important in personal names and place names—ensure databases and UI render ı properly.
Dotless i is used so accents (hats, bars) do not collide with a dot above the letter.
Correct handling prevents casing and search bugs in Turkish locales.
Verifying locale-aware case conversion behavior (ı/I vs i/İ).
Accurate spelling improves clarity for readers and assistive technologies.
Proper spelling helps search indexing for Turkish-language content.
💡 Best Practices
Do
- Serve pages as UTF-8; you can also type ı directly in UTF-8 source
- Use
ıorıwhen generating HTML programmatically - Use locale-aware casing for Turkish:
I↔ ı andİ↔i - Set
lang="tr"for Turkish content - Distinguish ı (U+0131) from dotted
i(U+0069)
Don’t
- Substitute dotted
iwhen ı is required—spelling and search break - Apply default English casing rules to Turkish text
- Put CSS escape
\0131in HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Omit UTF-8 encoding on multilingual pages
Key Takeaways
Four references render ı; named entity is most readable
ı ı ıFor CSS stylesheets, use the escape in the content property
\0131Unicode U+0131 — LATIN SMALL LETTER DOTLESS I
Essential for Turkish, Azerbaijani, math typography, and i18n
Previous: Lowercase I Circumflex (î) Next: Lowercase I Double Grave
❓ Frequently Asked Questions
ı (named), ı (hex), ı (decimal), or \0131 in CSS content. The named entity ı is the most readable for HTML content.U+0131 (LATIN SMALL LETTER DOTLESS I). Latin Extended-A block. Hex 131, decimal 305. A distinct letter in Turkish and Azerbaijani, not the same as dotted i (U+0069).ı. Some references also list ı for the same character. You can also use numeric references ı or ı.i and ı as different letters with different uppercase forms: i → İ and ı → I. Using the wrong one can change meaning and break casing and search behavior.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
