HTML Entity for Uppercase L Caron (Ľ)

What You'll Learn
How to display the uppercase 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 where it indicates a palatalized or soft l sound. This character is U+013D in the Latin Extended-A block and is the capital pair of ľ.
Render it with Ľ, Ľ, Ľ, or CSS escape \13D. The named entity Ľ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase L Caron Entity
U+013DLatin Extended-A
ĽHexadecimal reference
ĽDecimal reference
ĽMost readable option
Name Value
──────────── ──────────
Unicode U+013D
Hex code Ľ
HTML code Ľ
Named entity Ľ
CSS code \13D
Meaning Latin capital letter L with caron
Related U+013E = ľ (lowercase, ľ)
U+004C = L (plain uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase L caron (Ľ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\13D";
}
</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 uppercase L caron (Ľ) and the named entity Ľ are supported in modern browsers:
👀 Live Preview
See the uppercase L caron (Ľ) in Slovak and Central European contexts:
🧠 How It Works
Named Entity
Ľ is the standard named entity for Ľ—readable in source HTML and part of the HTML5 entity set.
Hexadecimal Code
Ľ uses the Unicode hexadecimal value 13D to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ľ uses the decimal Unicode value 317 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\13D is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ľ. Unicode U+013D sits in Latin Extended-A. Lowercase pair: U+013E (ľ). Prefer the precomposed character over L + combining caron (U+030C). Do not confuse with plain L, Ĺ (L with acute), or Ł (L with stroke).
Use Cases
The uppercase L caron (Ľ) is commonly used in:
Capitalized words, proper names, and titles where Ľ is required (e.g. Ľudovít, Ľubica).
Multilingual content and orthographies that use the caron (háček) on capital L.
Slovak courses, dictionaries, and educational content teaching the letter pair Ľ/ľ.
Websites and apps supporting Slovak with proper encoding and character display.
Technical or reference documentation with Slovak terms and character tables.
Correct Unicode with lang="sk" helps screen readers handle Ľ in Slovak content.
Proper spelling helps search indexing for Slovak-language content.
💡 Best Practices
Do
- Use
Ľin HTML when possible for readability - Serve pages as UTF-8; you can also type Ľ directly in UTF-8 source
- Set
lang="sk"on Slovak content to aid pronunciation - Link to the lowercase pair ľ (
ľ, U+013E) when documenting case forms - Distinguish Ľ (caron) from plain
Land Ĺ (acute)
Don’t
- Substitute plain
Lwhen Ľ is required for correct Slovak spelling - Confuse caron Ľ with acute Ĺ or other accented L variants
- Put CSS escape
\13Din HTML text nodes - Use
U+0013Dor CSS\0013D—the correct code isU+013Dand\13D - Omit UTF-8 encoding on pages with extended Latin characters
Key Takeaways
Four references render Ľ; named entity is most readable
Ľ Ľ ĽFor CSS stylesheets, use the escape in the content property
\13DUnicode U+013D — LATIN CAPITAL LETTER L WITH CARON
Lowercase pair is U+013E (ľ, ľ)
Previous: Uppercase L Acute (Ĺ) Next: Uppercase L Cedilla
❓ Frequently Asked Questions
Ľ (named), Ľ (hex), Ľ (decimal), or \13D in CSS content. The named entity Ľ is the most readable for HTML content.U+013D (LATIN CAPITAL LETTER L WITH CARON). Latin Extended-A block. Hex 13D, decimal 317. Used in Slovak and other Central European languages.Ľ. It is part of the HTML5 standard and is supported in modern browsers. You can also use numeric references or type Ľ directly in UTF-8.L (U+004C) is the standard uppercase L. They are distinct Unicode characters used in different orthographic contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
