Latin Capital Letter L With Stroke

Ł

Shortcodes

Copy useful codes for latin capital letter l with stroke symbol Ł to use in websites, apps, blogs, and docs.

Unicode
U+0141
HTML Code
Ł
HEX Code
Ł
CSS Code
\0141
JS/JSON
\u0141
Unix/C/PHP/JAVA
0x141
URL-encode
%C5%81

Customize Latin Capital Letter L With Stroke

Customize Ł, download it as SVG or PNG, or copy the generated HTML snippet.

Ł
  

How to use Latin Capital Letter L With Stroke Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ł</span>
HTML Code:
<span>&#321;</span>
HEX Code:
<span>&#x0141;</span>

Add with CSS

.latin-capital-letter-l-with-stroke::before {
  content: '\\0141';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-l-with-stroke').textContent = 'Ł';
copied