HTML Entity for Lowercase L Caron (ľ)

What You'll Learn
How to display the lowercase l with caron (ľ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The caron (háček, ˇ) is a diacritic used in Slovak and other Central European orthographies. This character is U+013E in the Latin Extended-A block.
Render it with ľ, ľ, ľ, or CSS escape \13E. The named entity ľ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase L Caron Entity
U+013ELatin Extended-A
ľHexadecimal reference
ľDecimal reference
ľMost readable option
Name Value
──────────── ──────────
Unicode U+013E
Hex code ľ
HTML code ľ
Named entity ľ
CSS code \13E
Meaning Latin small letter l with caron
Related U+013D = Ľ (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase l caron (ľ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\13E";
}
</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 caron (ľ) and the named entity ľ are supported in modern browsers when the font includes Latin Extended-A glyphs:
👀 Live Preview
See the lowercase l caron (ľ) in Slovak and linguistic contexts:
l (U+006C) or ĺ (l with acute)🧠 How It Works
Named Entity
ľ is the HTML5 named entity for the lowercase l with caron—readable in source HTML.
Hexadecimal Code
ľ uses the Unicode hexadecimal value 013E to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ľ uses the decimal Unicode value 318 to display the same character. Works in all HTML contexts.
CSS Entity
\13E 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+013E sits in Latin Extended-A. Prefer the precomposed character over l + combining caron (U+030C). Do not confuse with plain l (U+006C) or ĺ (l with acute).
Use Cases
The lowercase l caron (ľ) is commonly used in:
Correct spelling of Slovak words and proper names (e.g. ľad, poľný).
Academic texts and language descriptions using Latin Extended-A characters.
Pronunciation guides and language reference materials that include ľ.
Localized websites and apps supporting Central European Latin characters.
Language-learning materials and teaching resources for Slovak.
Using U+013E ensures screen readers interpret ľ as one character, not l plus a mark.
When generating Slovak markup, using ľ or ľ ensures correct output.
💡 Best Practices
Do
- Use U+013E (ľ) for l with caron; 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 Slovak text
- Prefer the precomposed character over l + combining caron (U+030C)
Don’t
- Substitute plain
lwhen ľ is required for correct Slovak spelling - Confuse ľ (l with caron) with ĺ (l with acute) or plain
l - Put CSS escape
\13Ein 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
\13EUnicode U+013E — LATIN SMALL LETTER L WITH CARON
Essential for Slovak and Central European content on the web
Previous: Lowercase L Belt (ɬ) Next: Lowercase L Cedilla
❓ Frequently Asked Questions
ľ (named), ľ (hex), ľ (decimal), or \13E in CSS content. The named entity is the most readable. In UTF-8 you can also type the character directly.U+013E (LATIN SMALL LETTER L WITH CARON). Latin Extended-A block. Hex 013E, decimal 318. Used in Slovak and other Central European 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 (\13E) 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
