HTML Entity for Lowercase L Belt (ɬ)

What You'll Learn
How to display the lowercase l with belt (ɬ) in HTML using hexadecimal, decimal, and CSS escape methods. The belt (retroflex hook) marks this as an IPA symbol for the voiceless alveolar lateral fricative—a sound found in Welsh, Zulu, Navajo, and other languages. This character is U+026C in the IPA Extensions block.
Render it with ɬ, ɬ, or CSS escape \26C. 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 Belt Entity
U+026CIPA Extensions
ɬHexadecimal reference
ɬDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+026C
Hex code ɬ
HTML code ɬ
Named entity (none)
CSS code \26C
Meaning Latin small letter l with belt
IPA Voiceless alveolar lateral fricative
Related U+006C = l (plain lowercase)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the lowercase l belt (ɬ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\26C";
}
</style>
</head>
<body>
<p>Symbol (hex): ɬ</p>
<p>Symbol (decimal): ɬ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase l belt (ɬ) is supported in modern browsers when the font includes IPA Extensions glyphs:
👀 Live Preview
See the lowercase l belt (ɬ) in IPA and language contexts:
l (U+006C) or ƚ (l with bar)🧠 How It Works
Hexadecimal Code
ɬ uses the Unicode hexadecimal value 026C to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ɬ uses the decimal Unicode value 620 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\26C 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+026C sits in IPA Extensions. Do not confuse with plain l (U+006C) or ƚ (l with bar, U+019A). Use IPA-capable fonts for reliable rendering.
Use Cases
The lowercase l belt (ɬ) is commonly used in:
Standard IPA symbol for the voiceless alveolar lateral fricative in phonetic transcriptions.
Welsh “ll” sound; also appears in Zulu, Navajo, and other languages with this phoneme.
Pronunciation keys and language-learning materials using IPA notation.
Teaching resources for Welsh, Zulu, and other languages with this sound.
Academic papers, phonology textbooks, and language documentation using IPA symbols.
Using U+026C ensures screen readers interpret ɬ as one IPA character.
When generating phonetic markup, using ɬ or ɬ ensures correct output.
💡 Best Practices
Do
- Use U+026C (ɬ) for the IPA l-with-belt 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+026C over combining forms
- Pick one entity style (hex or decimal) per project for consistency
Don’t
- Substitute plain
lor “ll” when ɬ is required for correct IPA notation - Confuse ɬ (l with belt) with ƚ (l with bar) or plain
l - Expect a named HTML entity—none exists for this character
- Put CSS escape
\26Cin 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
\26CUnicode U+026C — LATIN SMALL LETTER L WITH BELT
IPA symbol for voiceless alveolar lateral fricative (Welsh ll, etc.)
Previous: Lowercase L Bar (ƚ) Next: Lowercase L Caron
❓ Frequently Asked Questions
ɬ (hex), ɬ (decimal), or \26C in CSS content. There is no named HTML entity for ɬ. In UTF-8 you can also type the character directly.U+026C (LATIN SMALL LETTER L WITH BELT). IPA Extensions block. Hex 026C, decimal 620. It is the IPA symbol for the voiceless alveolar lateral fricative.ɬ or ɬ, or the CSS entity \26C. 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
