HTML Entity for Uppercase I Iota (Ɩ)

What You'll Learn
How to display the uppercase Latin Iota (Ɩ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0196 (LATIN CAPITAL LETTER IOTA) in the Latin Extended-B block. It is used in phonetic and linguistic notation and is not the same as Greek iota (ι, U+03B9).
Render it with Ɩ, Ɩ, or CSS escape \196. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase I Iota Entity
U+0196Latin Extended-B
ƖHexadecimal reference
ƖDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0196
Hex code Ɩ
HTML code Ɩ
Named entity (none)
CSS code \196
Meaning Latin capital letter Iota
Related U+0269 = ɩ (lowercase Latin iota)
Not the same U+03B9 = ι (Greek iota)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase Latin Iota (Ɩ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\196";
}
</style>
</head>
<body>
<p>Symbol (hex): Ɩ</p>
<p>Symbol (decimal): Ɩ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase Latin Iota (Ɩ) renders correctly in modern browsers when UTF-8 is used, though font support for Latin Extended-B varies:
👀 Live Preview
See the uppercase Latin Iota (Ɩ) and how it differs from similar characters:
🧠 How It Works
Hexadecimal Code
Ɩ uses the Unicode hexadecimal value 196 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ɩ uses the decimal Unicode value 406 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\196 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: Ɩ. Unicode U+0196 sits in Latin Extended-B. Lowercase equivalent: U+0269 (ɩ). There is no named HTML entity. Do not confuse with Greek ι (U+03B9) or plain I (U+0049).
Use Cases
The uppercase Latin Iota (Ɩ) is commonly used in:
Dialectology and phonetic notation requiring the Latin capital Iota letter form.
IPA and phonetic guides that use Ɩ as a distinct Latin letter.
Scholarly papers and linguistic documentation referencing U+0196.
Dictionaries and courses showing specialized Latin letter forms.
Websites and apps for linguistic research requiring accurate character encoding.
Documentation, character maps, and encoding tutorials for U+0196.
Headlines and styled text in linguistics or phonetics contexts.
💡 Best Practices
Do
- Use
ƖorƖin HTML (no named entity exists) - Serve pages as UTF-8; you can also type Ɩ directly in UTF-8 source
- Distinguish Ɩ (Latin Iota) from ι (Greek iota) and plain
I - Use fonts that support Latin Extended-B characters
- Link to the lowercase pair ɩ (U+0269) when documenting case forms
Don’t
- Substitute Greek iota ι (U+03B9) when Ɩ (Latin Iota) is required
- Substitute plain
I(U+0049) for Ɩ in phonetic or linguistic text - Put CSS escape
\196in HTML text nodes - Use padded Unicode notation like U+00196—the correct value is
U+0196 - Use
\00196in CSS—the correct escape is\196
Key Takeaways
Three references render Ɩ (no named entity)
Ɩ ƖFor CSS stylesheets, use the escape in the content property
\196Unicode U+0196 — LATIN CAPITAL LETTER IOTA
Not Greek iota (U+03B9); lowercase pair is U+0269 (ɩ)
Previous: Uppercase I Inverted Breve (Ȋ) Next: Uppercase I Latin
❓ Frequently Asked Questions
Ɩ (hex), Ɩ (decimal), or \196 in CSS content. There is no named HTML entity for U+0196.U+0196 (LATIN CAPITAL LETTER IOTA). Latin Extended-B block. Hex 196, decimal 406. Used in phonetic and linguistic notation. Not the same as Greek iota (U+03B9).Ɩ or Ɩ) is used in HTML content. The CSS entity (\196) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ɩ but in different contexts.Ɩ or Ɩ in HTML, or \196 in CSS. Do not confuse with Greek iota (U+03B9, ι) or Latin small letter iota (U+0269, ɩ).Explore More HTML Entities!
Discover 1500+ HTML character references — phonetic letters, symbols, and more.
8 people found this page helpful
