HTML Entity for Lowercase L Cedilla (ļ)

What You'll Learn
How to display the lowercase l with cedilla (ļ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The cedilla (¸) is a diacritic hook beneath the letter l, used in Latvian and other Baltic orthographies. This character is U+013C in the Latin Extended-A block.
Render it with ļ, ļ, ļ, or CSS escape \13C. The named entity ļ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase L Cedilla Entity
U+013CLatin Extended-A
ļHexadecimal reference
ļDecimal reference
ļMost readable option
Name Value
──────────── ──────────
Unicode U+013C
Hex code ļ
HTML code ļ
Named entity ļ
CSS code \13C
Meaning Latin small letter l with cedilla
Related U+013B = Ļ (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase l cedilla (ļ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\13C";
}
</style>
</head>
<body>
<p>Symbol (hex): ļ</p>
<p>Symbol (decimal): ļ</p>
<p>Symbol (named): ļ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase l cedilla (ļ) and the named entity ļ are supported in modern browsers when the font includes Latin Extended-A glyphs:
👀 Live Preview
See the lowercase l cedilla (ļ) in Latvian and linguistic contexts:
l (U+006C) or ķ (k with cedilla)🧠 How It Works
Named Entity
ļ is the HTML5 named entity for the lowercase l with cedilla—readable in source HTML.
Hexadecimal Code
ļ uses the Unicode hexadecimal value 013C to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ļ uses the decimal Unicode value 316 to display the same character. Works in all HTML contexts.
CSS Entity
\13C is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: ļ. Unicode U+013C sits in Latin Extended-A. Prefer the precomposed character over l + combining cedilla (U+0327). Do not confuse with plain l (U+006C) or ķ (k with cedilla).
Use Cases
The lowercase l cedilla (ļ) is commonly used in:
Official letter in the Latvian alphabet for correct spelling of words and names.
Websites and apps supporting Latvian and Baltic language localization.
Pronunciation guides and language reference materials that include ļ.
Academic texts and language descriptions using Latin Extended-A characters.
Language-learning materials and teaching resources for Latvian.
Using U+013C ensures screen readers interpret ļ as one character, not l plus a mark.
When generating Latvian markup, using ļ or ļ ensures correct output.
💡 Best Practices
Do
- Use U+013C (ļ) for l with cedilla; use U+006C for plain l when semantics matter
- Prefer
ļwhen using entities—it is more readable than numeric codes - Serve pages as UTF-8; you can also type ļ directly in UTF-8 source
- Use fonts that support Latin Extended-A for Latvian text
- Prefer the precomposed character over l + combining cedilla (U+0327)
Don’t
- Substitute plain
lwhen ļ is required for correct Latvian spelling - Confuse ļ (l with cedilla) with ķ (k with cedilla) or plain
l - Put CSS escape
\13Cin HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Mix entity styles inconsistently within the same project
Key Takeaways
Four ways to render ļ; includes named entity ļ
ļ ļ ļFor CSS stylesheets, use the escape in the content property
\13CUnicode U+013C — LATIN SMALL LETTER L WITH CEDILLA
Essential for Latvian and Baltic language content on the web
Previous: Lowercase L Caron (ľ) Next: Lowercase L Curl
❓ Frequently Asked Questions
ļ (named), ļ (hex), ļ (decimal), or \13C in CSS content. The named entity is the most readable. In UTF-8 you can also type the character directly.U+013C (LATIN SMALL LETTER L WITH CEDILLA). Latin Extended-A block. Hex 013C, decimal 316. Used in Latvian and other Baltic languages.ļ. It is part of the HTML5 standard and supported in modern browsers. You can also use numeric references or type ļ directly in UTF-8.ļ, ļ, or ļ) is used in HTML content. The CSS entity (\13C) is used in stylesheets in the content property of pseudo-elements. All produce ļ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
