HTML Entity for Uppercase L Stroke (Ł)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0141

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

Unicode U+0141

Latin Extended-A

Hex Code Ł

Hexadecimal reference

HTML Code Ł

Decimal reference

Named Entity Ł

Most readable option

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\141";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0141;</p>
<p>Symbol (decimal): &#321;</p>
<p>Symbol (named): &Lstrok;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase l with stroke (Ł) and the named entity &Lstrok; are supported in modern browsers when UTF-8 is used:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase l with stroke (Ł) in Polish and linguistic contexts:

Large glyphŁ
Polish wordsŁódź  |  Łukasz  |  Wrocław
Named entity&Lstrok; renders as Ł
Case pairŁ (uppercase) / ł (lowercase, &lstrok;)
Not the same asplain L (U+004C)  |  Ľ (L caron)
Numeric refs&#x0141; &#321; &Lstrok; \141

🧠 How It Works

1

Named Entity

&Lstrok; is the HTML5 named entity for the uppercase l with stroke—readable in source HTML.

HTML markup
2

Hexadecimal Code

&#x0141; uses the Unicode hexadecimal value 0141 to display the character. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#321; uses the decimal Unicode value 321 to display the same character. Works in all HTML contexts.

HTML markup
4

CSS Entity

\141 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods produce the glyph: Ł. Unicode U+0141 sits in Latin Extended-A. Lowercase pair: U+0142 (&lstrok;). 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:

🇵🇱 Polish language

Correct spelling of Polish words and proper names (e.g. Łódź, Łukasz, Wrocław).

🔤 Linguistics

Academic texts and language descriptions using Latin Extended-A characters.

📖 Dictionaries

Polish dictionary entries, pronunciation guides, and language reference materials.

🌐 Localization

Localized websites and apps supporting Central European Latin characters.

📚 Language learning

Educational content for Polish and other languages that use the L with stroke.

♿ Accessibility

Using U+0141 ensures screen readers interpret Ł correctly in Polish text.

⚙ Programmatic HTML

When generating markup, &Lstrok; or &#321; ensures correct Polish character output.

💡 Best Practices

Do

  • Use U+0141 (Ł) for Polish text; use U+004C for plain L when semantics matter
  • Prefer &Lstrok; 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 L when Ł is required for correct Polish spelling
  • Confuse Ł (uppercase) with ł (lowercase, &lstrok;)
  • Put CSS escape \141 in HTML text nodes
  • Use padded Unicode notation like U+00141—the correct value is U+0141
  • Use \00141 in CSS—the correct escape is \141

Key Takeaways

1

Four references render Ł; named entity is &Lstrok;

&Lstrok; &#x0141; &#321;
2

For CSS stylesheets, use the escape in the content property

\141
3

Unicode U+0141 — LATIN CAPITAL LETTER L WITH STROKE

4

Essential Polish alphabet letter; pair with &lstrok; (U+0142)

❓ Frequently Asked Questions

Use &Lstrok; (named), &#x0141; (hex), &#321; (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.
For Polish text, proper names, multilingual websites, language-learning materials, dictionaries, and any content that requires the correct L-with-stroke for meaning and accessibility.
Yes. The named HTML entity is &Lstrok;. You can also use &#x0141;, &#321;, or the CSS entity \141. In UTF-8 pages you can type Ł directly.
The uppercase l with stroke (Ł) is primarily used in Polish, where it represents a distinct sound from plain L and appears in words such as Łódź and names like Łukasz. It also appears in Kashubian, Sorbian, and some other languages. Use &lstrok; (ł) for the lowercase form.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful