HTML Entity for Uppercase L Acute (Ĺ)

What You'll Learn
How to display the uppercase L with acute accent (Ĺ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The acute accent (´) is a diacritic that modifies the letter L and appears in Slovak, Sami, and other languages. This character is U+0139 in the Latin Extended-A block and is the capital pair of ĺ.
Render it with Ĺ, Ĺ, Ĺ, or CSS escape \139. The named entity Ĺ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase L Acute Entity
U+0139Latin Extended-A
ĹHexadecimal reference
ĹDecimal reference
ĹMost readable option
Name Value
──────────── ──────────
Unicode U+0139
Hex code Ĺ
HTML code Ĺ
Named entity Ĺ
CSS code \139
Meaning Latin capital letter L with acute
Related U+013A = ĺ (lowercase pair)
U+004C = L (plain uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase L acute (Ĺ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\139";
}
</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 acute (Ĺ) and the named entity Ĺ are supported in modern browsers:
👀 Live Preview
See the uppercase L acute (Ĺ) in multilingual and linguistic 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 139 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ĺ uses the decimal Unicode value 313 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\139 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+0139 sits in Latin Extended-A. Lowercase pair: U+013A (ĺ). Prefer the precomposed character over L + combining acute (U+0301). Do not confuse with plain L, Ľ (L with caron), or Á (A with acute).
Use Cases
The uppercase L acute (Ĺ) is commonly used in:
Capitalized words and titles where Ĺ is required at the start of a sentence or in proper nouns.
Northern and Lule Sami orthography using the acute-accented capital L.
Courses, dictionaries, and educational content teaching the letter pair Ĺ/ĺ.
Phonetic transcriptions and academic texts using Latin Extended-A characters.
Websites and apps supporting Slovak, Sami, and other languages with proper encoding.
Correct Unicode ensures screen readers handle Ĺ properly in accented text.
Proper spelling helps search indexing for multilingual 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
- Link to the lowercase pair ĺ (U+013A) when documenting case forms
- Use fonts that support Latin Extended-A for accented text
- Distinguish Ĺ (acute) from plain
Land Ľ (caron)
Don’t
- Substitute plain
Lwhen Ĺ is required for correct spelling - Confuse acute Ĺ with caron Ľ or other accented L variants
- Put CSS escape
\139in HTML text nodes - Use
U+00139or CSS\00139—the correct code isU+0139and\139 - 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
\139Unicode U+0139 — LATIN CAPITAL LETTER L WITH ACUTE
Lowercase pair is U+013A (ĺ, l with acute)
Previous: Uppercase L (L) Next: Uppercase L Caron
❓ Frequently Asked Questions
Ĺ (named), Ĺ (hex), Ĺ (decimal), or \139 in CSS content. The named entity Ĺ is the most readable for HTML content.U+0139 (LATIN CAPITAL LETTER L WITH ACUTE). Latin Extended-A block. Hex 139, decimal 313. Used in Slovak, Sami, and linguistic contexts.Ĺ. 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 linguistic contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
