Modifier Letter Small L

ˡ

Shortcodes

Copy useful codes for modifier letter small l symbol ˡ to use in websites, apps, blogs, and docs.

Unicode
U+02E1
HTML Code
ˡ
HEX Code
ˡ
CSS Code
\02E1
JS/JSON
\u02E1
Unix/C/PHP/JAVA
0x2E1
URL-encode
%CB%A1

Customize Modifier Letter Small L

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

ˡ
  

How to use Modifier Letter Small L Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ˡ</span>
HTML Code:
<span>&#737;</span>
HEX Code:
<span>&#x02E1;</span>

Add with CSS

.modifier-letter-small-l::before {
  content: '\\02E1';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-l').textContent = 'ˡ';
copied