HTML Entity for Uppercase L (L)

What You'll Learn
How to display the uppercase letter L in HTML using entity methods. The letter L is the twelfth letter of the Latin alphabet (U+004C) and is part of the Basic Latin block. In most cases you can type it directly; numeric or CSS entities are useful when escaping, generating content via CSS, or ensuring correct encoding.
This character can be displayed using the character itself, a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity like &L; for this letter.
⚡ Quick Reference — Uppercase L Entity
U+004CBasic Latin (ASCII)
LHexadecimal reference
LDecimal reference
LType directly (no named entity)
Name Value
──────────── ──────────
Unicode U+004C
Hex code L
HTML code L
Named entity (none — use L directly)
CSS code \4C
Meaning Latin capital letter L
Related U+006C = l (lowercase)
Block Basic Latin (U+0000–U+007F)Complete HTML Example
A simple example showing the uppercase letter L using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\4C";
}
</style>
</head>
<body>
<p>Symbol (hex): L</p>
<p>Symbol (decimal): L</p>
<p>Symbol (direct): L</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase letter L (U+004C) is universally supported in all browsers and platforms as part of Basic Latin:
👀 Live Preview
See the uppercase letter L in common text contexts:
🧠 How It Works
Hexadecimal Code
L uses the Unicode hexadecimal value 4C to display the letter. The x prefix indicates hexadecimal format.
Decimal HTML Code
L uses the decimal Unicode value 76 to display the same character. This is the ASCII/Unicode decimal for L.
Direct Character
Type L directly in HTML. There is no named entity like &L;; the character itself is the standard approach in body text.
CSS Entity
\4C 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: L. Unicode U+004C sits in Basic Latin. The lowercase form is U+006C (l). In normal text, typing L is preferred.
Use Cases
The uppercase letter L (or its entity forms) is commonly used in:
Standard character in paragraphs, articles, and any Latin-script text. Usually typed directly.
Use in ARIA labels, alt text, placeholders, and attribute values; numeric entities help when escaping is needed.
Reference in font specs, CSS content, or generated text via CSS entities.
Teaching the alphabet, phonics, or character encoding; entity codes clarify the exact character.
When building HTML or strings programmatically, numeric entities ensure correct output.
Part of Basic Latin used across languages; entities can help in legacy encoding contexts.
CSS content or list-style may use the character via entity for styling.
💡 Best Practices
Do
- Type
Ldirectly in body content; use entities only when necessary - Serve pages as UTF-8 so Basic Latin characters render without entities
- Use numeric references (
LorL) when escaping is required - Use
\4Cin CSScontentwhen generating the letter via pseudo-elements - Remember uppercase L is U+004C and lowercase l is U+006C when case matters
Don’t
- Overuse numeric entities for
Lin normal readable text - Expect a named HTML entity like
&L;—none exists for this letter - Put CSS escape
\4Cin HTML text nodes - Use padded Unicode notation like U+0004C—the correct value is
U+004C - Use
\0004Cin CSS—the correct escape is\4C
Key Takeaways
Type L directly, or use hex/decimal references
L LFor CSS stylesheets, use the escape in the content property
\4CUnicode U+004C — LATIN CAPITAL LETTER L
Twelfth letter of the Latin alphabet (Basic Latin block)
Previous: Uppercase K Hook (Ƙ) Next: Uppercase L Acute
❓ Frequently Asked Questions
L directly, or use L (hex), L (decimal), or \4C in CSS content. For most content, typing L is standard; use numeric or CSS entities when escaping or generating via CSS.U+004C (LATIN CAPITAL LETTER L). Basic Latin block. Hex 4C, decimal 76. It is the twelfth letter of the Latin alphabet.::before/::after, ensuring encoding in legacy systems, or building strings programmatically. In normal body text, typing L is preferred.L or L) is used in HTML content or attributes. The CSS entity (\4C) is used in CSS, e.g. in the content property of pseudo-elements. Both produce L but in different contexts.&L; for the letter L. Use the character L directly, or numeric references L (decimal) or L (hex). Named entities are mainly for characters with special meaning (e.g. <, &).Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
