HTML Entity for Lowercase L Middle Tilde (ɫ)

What You'll Learn
How to display the lowercase l with middle tilde (ɫ) in HTML using hexadecimal, decimal, and CSS escape methods. This is the IPA symbol for the velarized lateral approximant—often called “dark l,” as in English pull or milk. The character is U+026B in the IPA Extensions block.
Render it with ɫ, ɫ, or CSS escape \26B. There is no named HTML entity for this character, so numeric codes or CSS must be used. In UTF-8 documents you can also type ɫ directly.
⚡ Quick Reference — Lowercase L Middle Tilde Entity
U+026BIPA Extensions
ɫHexadecimal reference
ɫDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+026B
Hex code ɫ
HTML code ɫ
Named entity (none)
CSS code \26B
Meaning Latin small letter l with middle tilde
IPA Velarized lateral approximant (dark l)
Related U+006C = l (plain lowercase)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the lowercase l middle tilde (ɫ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\26B";
}
</style>
</head>
<body>
<p>Symbol (hex): ɫ</p>
<p>Symbol (decimal): ɫ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase l middle tilde (ɫ) is supported in modern browsers when the font includes IPA Extensions glyphs:
👀 Live Preview
See the lowercase l middle tilde (ɫ) in IPA and English phonetics contexts:
l (U+006C), ŀ (l middle dot), or ɭ (l retroflex hook)🧠 How It Works
Hexadecimal Code
ɫ uses the Unicode hexadecimal value 026B to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ɫ uses the decimal Unicode value 619 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\26B 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+026B sits in IPA Extensions. Do not confuse with plain l (U+006C), ŀ (l with middle dot), or ɭ (l retroflex hook). Use IPA-capable fonts for reliable rendering.
Use Cases
The lowercase l middle tilde (ɫ) is commonly used in:
Standard IPA symbol for the velarized (dark) lateral approximant in phonetic transcriptions.
Dark l in words like pull, milk, and feel in pronunciation guides and linguistics.
Pronunciation keys and language-learning materials using IPA notation.
Academic papers, phonology textbooks, and language documentation using IPA symbols.
Teaching resources for English and other languages with velarized l sounds.
Using U+026B ensures screen readers interpret ɫ as one IPA character.
When generating phonetic markup, using ɫ or ɫ ensures correct output.
💡 Best Practices
Do
- Use U+026B (ɫ) for the IPA dark-l symbol; use U+006C for plain l when semantics matter
- Serve pages as UTF-8; you can also type ɫ directly in UTF-8 source
- Use IPA-capable fonts (e.g. Doulos SIL, Charis SIL) for reliable rendering
- Prefer the precomposed character U+026B over combining forms
- Pick one entity style (hex or decimal) per project for consistency
Don’t
- Substitute plain
lwhen ɫ is required for correct IPA notation - Confuse ɫ (l middle tilde) with ŀ (l middle dot) or ɭ (l retroflex hook)
- Expect a named HTML entity—none exists for this character
- Put CSS escape
\26Bin HTML text nodes - Assume all fonts render IPA Extensions glyphs identically
Key Takeaways
Three references render ɫ; no named entity exists
ɫ ɫFor CSS stylesheets, use the escape in the content property
\26BUnicode U+026B — LATIN SMALL LETTER L WITH MIDDLE TILDE
IPA symbol for velarized lateral approximant (dark l)
Previous: Lowercase L Middle Dot (ŀ) Next: Lowercase L Retroflex Hook
❓ Frequently Asked Questions
ɫ (hex), ɫ (decimal), or \26B in CSS content. There is no named HTML entity for ɫ. In UTF-8 you can also type the character directly.U+026B (LATIN SMALL LETTER L WITH MIDDLE TILDE). IPA Extensions block. Hex 026B, decimal 619. It is the IPA symbol for the velarized lateral approximant (dark l).ɫ or ɫ, or the CSS entity \26B. In UTF-8 pages you can type ɫ directly.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
