HTML Entity for Lowercase L Stroke (ł)

What You'll Learn
How to display the lowercase l with stroke (ł) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is part of the Polish alphabet and appears in words like łódź, Polska, and miłość. The character is U+0142 in the Latin Extended-A block.
Render it with ł, ł, ł, or CSS escape \142. HTML provides the named entity ł for this character. In UTF-8 documents you can also type ł directly.
⚡ Quick Reference — Lowercase L Stroke Entity
U+0142Latin Extended-A
łHexadecimal reference
łDecimal reference
łHTML5 named entity
Name Value
──────────── ──────────
Unicode U+0142
Hex code ł
HTML code ł
Named entity ł
CSS code \142
Meaning Latin small letter l with stroke
Related U+0141 = Ł (uppercase L stroke)
Related U+006C = l (plain lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase l stroke (ł) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\142";
}
</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 lowercase l stroke (ł) and the named entity ł are supported in modern browsers when the font includes Latin Extended-A glyphs:
👀 Live Preview
See the lowercase l stroke (ł) in Polish text contexts:
l (U+006C) or Ł (uppercase L stroke)🧠 How It Works
Named Entity
ł is the HTML5 named entity for the lowercase l with stroke—readable in source HTML.
Hexadecimal Code
ł uses the Unicode hexadecimal value 0142 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ł uses the decimal Unicode value 322 to display the same character. Works in all HTML contexts.
CSS Entity
\142 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+0142 sits in Latin Extended-A. Prefer the precomposed character over l + combining stroke. Do not confuse with plain l (U+006C) or Ł (uppercase L stroke).
Use Cases
The lowercase l stroke (ł) is commonly used in:
Correct spelling of Polish words and proper names (e.g. łódź, Polska, miłość).
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+0142 ensures screen readers pronounce ł correctly in Polish text.
When generating markup, ł or ł ensures correct Polish character output.
💡 Best Practices
Do
- Use U+0142 (ł) for Polish text; use U+006C for plain letter 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 the precomposed character U+0142 rather than l + combining stroke
- Choose fonts that support Latin Extended-A for reliable Polish rendering
Don’t
- Substitute plain
lwhen ł is required for correct Polish spelling - Confuse ł (lowercase) with Ł (uppercase L stroke)
- Put CSS escape
\142in HTML text nodes - Mix entity styles inconsistently within the same project
- Assume all fonts render Latin Extended-A glyphs identically
Key Takeaways
Four references render ł; named entity is ł
ł ł łFor CSS stylesheets, use the escape in the content property
\142Unicode U+0142 — LATIN SMALL LETTER L WITH STROKE
Essential Polish alphabet letter in words like łódź and miłość
Previous: Lowercase L Script Small (ℓ) Next: Lowercase M
❓ Frequently Asked Questions
ł, hexadecimal ł, decimal ł, or \142 in CSS content. The named entity is the most readable. In UTF-8 you can also type ł directly.U+0142 (LATIN SMALL LETTER L WITH STROKE). Latin Extended-A block. Hex 0142, decimal 322. Used in Polish and some other languages.ł. You can also use ł, ł, or the CSS entity \142. In UTF-8 pages you can type ł directly.ł, ł, or ł) is used in HTML content; CSS entity \142 is used in stylesheets in the content property of pseudo-elements. All produce ł.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
