Script Small L

Shortcodes

Copy useful codes for script small l symbol ℓ to use in websites, apps, blogs, and docs.

Unicode
U+2113
HTML Code
ℓ
HTML Entity
ℓ
HEX Code
ℓ
CSS Code
\2113
JS/JSON
\u2113
Unix/C/PHP/JAVA
0x2113
URL-encode
%E2%84%93

Customize Script Small L

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

  

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

Insert in HTML

1. Direct symbol:
<span>ℓ</span>
HTML Code:
<span>&#8467;</span>
HTML Entity:
<span>&ell;</span>
HEX Code:
<span>&#x2113;</span>

Add with CSS

.script-small-l::before {
  content: '\\2113';
}

Set it in JavaScript

document.querySelector('.script-small-l').textContent = 'ℓ';
copied