HTML Entity for Uppercase L Middle Bar (Ƚ)

What You'll Learn
How to display the uppercase l with middle bar (Ƚ) in HTML using hexadecimal, decimal, and CSS escape methods. The horizontal bar crosses the letter L and is used in phonetic notation and some orthographies. This character is U+023D (LATIN CAPITAL LETTER L WITH BAR) in the Latin Extended-B block.
Render it with Ƚ, Ƚ, or CSS escape \023D. There is no named HTML entity. Do not confuse Ƚ with Ŀ (L with middle dot, which uses Ŀ).
⚡ Quick Reference — Uppercase L Middle Bar Entity
U+023DLatin Extended-B
ȽHexadecimal reference
ȽDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+023D
Hex code Ƚ
HTML code Ƚ
Named entity (none)
CSS code \023D
Meaning Latin capital letter L with bar
Related U+019A = ƚ (lowercase l with bar)
Not the same U+013F = Ŀ (L with middle dot)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase l middle bar (Ƚ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\023D";
}
</style>
</head>
<body>
<p>Symbol (hex): Ƚ</p>
<p>Symbol (decimal): Ƚ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase l middle bar (Ƚ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the uppercase l middle bar (Ƚ) in phonetic and linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ƚ uses the Unicode hexadecimal value 023D to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ƚ uses the decimal Unicode value 573 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\023D 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+023D sits in Latin Extended-B. Do not confuse with plain L (U+004C), Ŀ (L with middle dot), or ƚ (lowercase l with bar). Use the precomposed character for correct semantics in phonetic text.
Use Cases
The uppercase l middle 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+023D 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+023D (Ƚ) for L with bar; use U+004C 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
- Distinguish Ƚ (bar) from Ŀ (middle dot,
Ŀ) - 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 middle dot) or ƚ (lowercase l bar)
- Expect a named HTML entity—none exists for this character
- Use padded Unicode notation like U+0023D—the correct value is
U+023D - Use
\0023Din CSS—the correct escape is\023D
Key Takeaways
Three references render Ƚ; no named entity exists
Ƚ ȽFor CSS stylesheets, use the escape in the content property
\023DUnicode U+023D — LATIN CAPITAL LETTER L WITH BAR
Not the same as Ŀ (L with middle dot) or plain L (U+004C)
Previous: Uppercase L Latin (ʟ) Next: Uppercase L Middle Dot
❓ Frequently Asked Questions
Ƚ (hex), Ƚ (decimal), or \023D in CSS content. There is no named HTML entity for Ƚ. In UTF-8 you can also type the character directly.U+023D (LATIN CAPITAL LETTER L WITH BAR). Latin Extended-B block. Hex 023D, decimal 573. Used in phonetic notation and some orthographies.Ƚ or Ƚ, or the CSS entity \023D. In UTF-8 pages you can type Ƚ directly.Ŀ (used in Catalan). They look different and serve different purposes in Unicode.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
