HTML Entity for Uppercase L Stroke (Ł)

What You'll Learn
How to display the uppercase l with stroke (Ł) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Officially LATIN CAPITAL LETTER L WITH STROKE, this character is a distinct letter in the Polish alphabet and appears in other Central European orthographies. It is U+0141 in the Latin Extended-A block.
Render it with Ł, Ł, Ł, or CSS escape \141. The named entity Ł is often the most readable option in HTML source. Do not confuse Ł with plain L (U+004C).
⚡ Quick Reference — Uppercase L Stroke Entity
U+0141Latin Extended-A
ŁHexadecimal reference
ŁDecimal reference
ŁMost readable option
Name Value
──────────── ──────────
Unicode U+0141
Hex code Ł
HTML code Ł
Named entity Ł
CSS code \141
Meaning Latin capital letter L with stroke
Related U+0142 = ł (lowercase pair)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase l with stroke (Ł) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\141";
}
</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 with stroke (Ł) and the named entity Ł are supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase l with stroke (Ł) in Polish and linguistic contexts:
🧠 How It Works
Named Entity
Ł is the HTML5 named entity for the uppercase l with stroke—readable in source HTML.
Hexadecimal Code
Ł uses the Unicode hexadecimal value 0141 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ł uses the decimal Unicode value 321 to display the same character. Works in all HTML contexts.
CSS Entity
\141 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: Ł. Unicode U+0141 sits in Latin Extended-A. Lowercase pair: U+0142 (ł). Prefer the precomposed character over L + combining stroke. Do not confuse with plain L (U+004C).
Use Cases
The uppercase l with stroke (Ł) is commonly used in:
Correct spelling of Polish words and proper names (e.g. Łódź, Łukasz, Wrocław).
Academic texts and language descriptions using Latin Extended-A characters.
Polish dictionary entries, pronunciation guides, and language reference materials.
Localized websites and apps supporting Central European Latin characters.
Educational content for Polish and other languages that use the L with stroke.
Using U+0141 ensures screen readers interpret Ł correctly in Polish text.
When generating markup, Ł or Ł ensures correct Polish character output.
💡 Best Practices
Do
- Use U+0141 (Ł) for Polish text; use U+004C for plain L when semantics matter
- Prefer
Łover numeric codes when using entities—it is more readable - Serve pages as UTF-8; you can also type Ł directly in UTF-8 source
- Use
lang="pl"on Polish content for assistive technologies - Choose fonts that support Latin Extended-A for reliable Polish rendering
Don’t
- Substitute plain
Lwhen Ł is required for correct Polish spelling - Confuse Ł (uppercase) with ł (lowercase,
ł) - Put CSS escape
\141in HTML text nodes - Use padded Unicode notation like U+00141—the correct value is
U+0141 - Use
\00141in CSS—the correct escape is\141
Key Takeaways
Four references render Ł; named entity is Ł
Ł Ł ŁFor CSS stylesheets, use the escape in the content property
\141Unicode U+0141 — LATIN CAPITAL LETTER L WITH STROKE
Essential Polish alphabet letter; pair with ł (U+0142)
Previous: Uppercase L Script Capital (ℒ) Next: Uppercase L Turned Sans Serif Capital
❓ Frequently Asked Questions
Ł (named), Ł (hex), Ł (decimal), or \141 in CSS content. All four methods render Ł correctly. In UTF-8 you can also type the character directly.U+0141 (LATIN CAPITAL LETTER L WITH STROKE). Latin Extended-A block. Hex 0141, decimal 321. Used in Polish and other Central European languages.Ł. You can also use Ł, Ł, or the CSS entity \141. In UTF-8 pages you can type Ł directly.ł (ł) for the lowercase form.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
