Latin Small Letter L With Stroke

ł

Shortcodes

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

Unicode
U+0142
HTML Code
ł
HEX Code
ł
CSS Code
\0142
JS/JSON
\u0142
Unix/C/PHP/JAVA
0x142
URL-encode
%C5%82

Customize Latin Small Letter L With Stroke

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

ł
  

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

Insert in HTML

1. Direct symbol:
<span>ł</span>
HTML Code:
<span>&#322;</span>
HEX Code:
<span>&#x0142;</span>

Add with CSS

.latin-small-letter-l-with-stroke::before {
  content: '\\0142';
}

Set it in JavaScript

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