HTML Entity for Lowercase L Acute (ĺ)

What You'll Learn
How to display the lowercase l with acute accent (ĺ) in HTML using hexadecimal, decimal, and CSS escape methods. The acute accent (´) is a diacritic used in Slovak and in some linguistic contexts where it modifies the letter l. This character is U+013A in the Latin Extended-A block.
Render it with ĺ, ĺ, or CSS escape \013A. There is no named HTML entity for this character, so numeric codes or CSS must be used. In UTF-8 documents you can also type ĺ directly.
⚡ Quick Reference — Lowercase L Acute Entity
U+013ALatin Extended-A
ĺHexadecimal reference
ĺDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+013A
Hex code ĺ
HTML code ĺ
Named entity (none)
CSS code \013A
Meaning Latin small letter l with acute
Related U+006C = l (plain lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase l acute (ĺ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\013A";
}
</style>
</head>
<body>
<p>Symbol (hex): ĺ</p>
<p>Symbol (decimal): ĺ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase l acute (ĺ) is supported in modern browsers when the font includes Latin Extended-A glyphs:
👀 Live Preview
See the lowercase l acute (ĺ) in Slovak and linguistic contexts:
l (U+006C) or á (a with acute)🧠 How It Works
Hexadecimal Code
ĺ uses the Unicode hexadecimal value 013A to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ĺ uses the decimal Unicode value 314 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\013A 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+013A sits in Latin Extended-A. Prefer the precomposed character over l + combining acute (U+0301) for better compatibility. Do not confuse with plain l (U+006C) or á (a with acute, U+00E1).
Use Cases
The lowercase l acute (ĺ) is commonly used in:
Correct spelling of Slovak words and proper names that use the letter ĺ as a distinct alphabet letter.
Academic texts, phonetic notation, and language descriptions using Latin Extended-A characters.
Pronunciation guides, dictionary entries, and language reference materials that include ĺ.
Localized websites and apps supporting Central European Latin characters.
Language-learning materials and teaching resources for Slovak and related languages.
Using U+013A 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+013A (ĺ) for l with acute; use U+006C 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-A for Slovak text
- Prefer the precomposed character over l + combining acute (U+0301)
- Pick one entity style (hex or decimal) per project for consistency
Don’t
- Substitute plain
lwhen ĺ is required for correct Slovak spelling - Confuse ĺ (l with acute) with á (a with acute) or plain
l - Expect a named HTML entity—none exists for this character
- Put CSS escape
\013Ain HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
Key Takeaways
Three references render ĺ; no named entity exists
ĺ ĺFor CSS stylesheets, use the escape in the content property
\013AUnicode U+013A — LATIN SMALL LETTER L WITH ACUTE
Essential for Slovak and linguistic content on the web
Previous: Lowercase L (l) Next: Lowercase L Bar
❓ Frequently Asked Questions
ĺ (hex), ĺ (decimal), or \013A in CSS content. There is no named HTML entity for ĺ. In UTF-8 you can also type the character directly.U+013A (LATIN SMALL LETTER L WITH ACUTE). Latin Extended-A block. Hex 013A, decimal 314. Used in Slovak and in linguistic notation.ĺ or ĺ, or the CSS entity \013A. In UTF-8 pages you can type ĺ directly.ĺ or ĺ) is used in HTML content. The CSS entity (\013A) is used in stylesheets in the content property of pseudo-elements. Both produce ĺ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
