HTML Entity for Uppercase L Cedilla (Ļ)

What You'll Learn
How to display the uppercase L with cedilla (Ļ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+013B in the Latin Extended-A block and is the capital form of the Latvian letter ļ, where the cedilla (a hook below the letter) indicates a palatalized l sound.
Render it with Ļ, Ļ, Ļ, or CSS escape \13B. The named entity Ļ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase L Cedilla Entity
U+013BLatin Extended-A
ĻHexadecimal reference
ĻDecimal reference
ĻMost readable option
Name Value
──────────── ──────────
Unicode U+013B
Hex code Ļ
HTML code Ļ
Named entity Ļ
CSS code \13B
Meaning Latin capital letter L with cedilla
Related U+013C = ļ (lowercase)
U+004C = L (plain uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase L cedilla (Ļ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\13B";
}
</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 cedilla (Ļ) and the named entity Ļ are supported in modern browsers:
👀 Live Preview
See the uppercase L cedilla (Ļ) in Latvian and Baltic 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 13B to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ļ uses the decimal Unicode value 315 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\13B 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+013B sits in Latin Extended-A. Lowercase pair: U+013C (ļ). Do not confuse with plain L, Ľ (L with caron), or Ç (C with cedilla).
Use Cases
The uppercase L cedilla (Ļ) is commonly used in:
Capitalized Latvian words and titles where Ļ is required at the start of a sentence or in proper nouns.
Latvian and related Baltic language texts, dictionaries, and educational materials.
Latvian courses, pronunciation guides, and resources teaching the letter Ļ.
Websites and apps supporting Latvian with proper encoding and character display.
Technical or reference documentation with Latvian terms and character tables.
Correct Unicode ensures screen readers handle Ļ properly in Latvian content.
Proper spelling helps search indexing for Latvian-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="lv"on Latvian content to aid pronunciation - Link to the lowercase pair ļ (
ļ, U+013C) when documenting case forms - Distinguish Ļ (cedilla) from plain
Land Ľ (caron)
Don’t
- Substitute plain
Lwhen Ļ is required for correct Latvian spelling - Confuse cedilla Ļ with caron Ľ or C cedilla Ç
- Put CSS escape
\13Bin HTML text nodes - Use
U+0013Bor CSS\0013B—the correct code isU+013Band\13B - 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
\13BUnicode U+013B — LATIN CAPITAL LETTER L WITH CEDILLA
Lowercase pair is U+013C (ļ, ļ)
Previous: Uppercase L Caron (Ľ) Next: Uppercase L Latin
❓ Frequently Asked Questions
Ļ (named), Ļ (hex), Ļ (decimal), or \13B in CSS content. All four methods render Ļ correctly.U+013B (LATIN CAPITAL LETTER L WITH CEDILLA). Latin Extended-A block. Hex 13B, decimal 315. Used in Latvian and other Baltic languages.Ļ (L cedilla). It is part of the HTML5 standard and 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 — extended Latin, letters, and more.
8 people found this page helpful
