HTML Entity for Lowercase L Bar (ƚ)

What You'll Learn
How to display the lowercase l with bar (ƚ) in HTML using hexadecimal, decimal, and CSS escape methods. The bar is a diacritic mark that crosses the letter l, used in phonetic notation and some orthographies to represent a specific sound. This character is U+019A in the Latin Extended-B block.
Render it with ƚ, ƚ, or CSS escape \019A. 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 Bar Entity
U+019ALatin Extended-B
ƚHexadecimal reference
ƚDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+019A
Hex code ƚ
HTML code ƚ
Named entity (none)
CSS code \019A
Meaning Latin small letter l with bar
Related U+006C = l (plain lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase l bar (ƚ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\019A";
}
</style>
</head>
<body>
<p>Symbol (hex): ƚ</p>
<p>Symbol (decimal): ƚ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase l bar (ƚ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the lowercase l bar (ƚ) in phonetic and linguistic contexts:
l (U+006C), ĺ (l acute), or ɬ (l belt)🧠 How It Works
Hexadecimal Code
ƚ uses the Unicode hexadecimal value 019A to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƚ uses the decimal Unicode value 410 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\019A 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+019A sits in Latin Extended-B. Do not confuse with plain l (U+006C), ĺ (l with acute), or ɬ (l with belt). Use the precomposed character for correct semantics in phonetic text.
Use Cases
The lowercase l bar (ƚ) is commonly used in:
IPA and extended phonetic notation where l-with-bar represents a specific sound.
Academic papers, language documentation, and phonological descriptions using Latin Extended-B.
Pronunciation guides and reference works that include phonetic symbols such as ƚ.
Writing systems that use the l-with-bar as a distinct letter or symbol.
Fonts and typographic systems supporting Latin Extended-B for phonetic use.
Using U+019A ensures screen readers interpret ƚ as one character, not l plus a mark.
When generating phonetic markup, using ƚ or ƚ ensures correct output.
💡 Best Practices
Do
- Use U+019A (ƚ) for l with bar; use U+006C for plain l when semantics matter
- Serve pages as UTF-8; you can also type ƚ directly in UTF-8 source
- Use fonts that support Latin Extended-B for phonetic and linguistic text
- Prefer the precomposed character U+019A over combining forms
- Pick one entity style (hex or decimal) per project for consistency
Don’t
- Substitute plain
lwhen ƚ is required for correct phonetic notation - Confuse ƚ (l with bar) with ɬ (l with belt) or ĺ (l with acute)
- Expect a named HTML entity—none exists for this character
- Put CSS escape
\019Ain HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
Key Takeaways
Three references render ƚ; no named entity exists
ƚ ƚFor CSS stylesheets, use the escape in the content property
\019AUnicode U+019A — LATIN SMALL LETTER L WITH BAR
Used in phonetic notation and some orthographies on the web
Previous: Lowercase L Acute (ĺ) Next: Lowercase L Belt
❓ Frequently Asked Questions
ƚ (hex), ƚ (decimal), or \019A in CSS content. There is no named HTML entity for ƚ. In UTF-8 you can also type the character directly.U+019A (LATIN SMALL LETTER L WITH BAR). Latin Extended-B block. Hex 019A, decimal 410. Used in phonetic notation and some orthographies.ƚ or ƚ, or the CSS entity \019A. 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
