HTML Entity for Uppercase L Latin (ʟ)

What You'll Learn
How to display the uppercase l latin (ʟ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+029F (LATIN LETTER SMALL CAPITAL L)—an IPA phonetic symbol used as the capital form of l in phonetic notation. It sits in the IPA Extensions block.
Render it with ʟ, ʟ, or CSS escape \029F. There is no named HTML entity for this character. In IPA it represents the velar lateral approximant.
⚡ Quick Reference — Uppercase L Latin Entity
U+029FIPA Extensions
ʟHexadecimal reference
ʟDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+029F
Hex code ʟ
HTML code ʟ
Named entity (none)
CSS code \029F
Meaning Latin letter small capital L
IPA use Velar lateral approximant
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the uppercase l latin (ʟ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\029F";
}
</style>
</head>
<body>
<p>Symbol (hex): ʟ</p>
<p>Symbol (decimal): ʟ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase l latin (ʟ) renders correctly in modern browsers when UTF-8 is used and the font supports IPA Extensions:
👀 Live Preview
See the uppercase l latin (ʟ) in phonetic and typographic contexts:
🧠 How It Works
Hexadecimal Code
ʟ uses the Unicode hexadecimal value 029F to display the uppercase l latin. The x prefix indicates hexadecimal format.
Decimal HTML Code
ʟ uses the decimal Unicode value 671 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\029F 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+029F sits in IPA Extensions. There is no named HTML entity. Do not confuse with plain L (U+004C), l (U+006C), or Ļ (L with cedilla).
Use Cases
The uppercase l latin (ʟ) is commonly used in:
IPA notation, pronunciation guides, and linguistic research requiring the velar lateral approximant.
International Phonetic Alphabet documentation, textbooks, and academic papers with accurate consonant symbols.
Language research papers, documentation, and databases requiring proper IPA character representation.
Scholarly publications and phonetic analysis documents discussing lateral consonants.
Educational websites and apps that teach phonetic notation and pronunciation.
Dictionary interfaces and pronunciation tools needing accurate phonetic glyphs.
Character set demonstrations and Unicode showcases for IPA Extensions coverage.
💡 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
- Use fonts that support IPA Extensions (U+0250–U+02AF), e.g. Doulos SIL or Charis SIL
- Distinguish ʟ (IPA small capital L) from plain
L(U+004C) andl(U+006C) - Pick one numeric style (hex or decimal) per project for consistency
Don’t
- Assume a named entity exists—there is none for ʟ
- Substitute plain
Lorlwhen ʟ is required in IPA text - Put CSS escape
\029Fin HTML text nodes - Use padded Unicode notation like U+0029F—the correct value is
U+029F - Use
\0029Fin CSS—the correct escape is\029F
Key Takeaways
Three references render ʟ (no named entity)
ʟ ʟFor CSS stylesheets, use the escape in the content property
\029FUnicode U+029F — LATIN LETTER SMALL CAPITAL L
IPA Extensions; represents the velar lateral approximant in phonetic notation
Previous: Uppercase L Cedilla (Ļ) Next: Uppercase L Middle Bar
❓ Frequently Asked Questions
ʟ (hex), ʟ (decimal), or \029F in CSS content. There is no named HTML entity for this character.U+029F (LATIN LETTER SMALL CAPITAL L). IPA Extensions block. Hex 029F, decimal 671. Used in IPA phonetic notation for the velar lateral approximant.ʟ or ʟ) is used in HTML content. The CSS entity (\029F) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ʟ but in different contexts.L and lowercase l. In IPA it represents the velar lateral approximant—a specific phonetic sound, not the ordinary letter L. This distinction matters for accurate phonetic representation in linguistic studies.Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin, phonetic symbols, and more.
8 people found this page helpful
