Script Capital L

Shortcodes

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

Unicode
U+2112
HTML Code
ℒ
HEX Code
ℒ
CSS Code
\2112
JS/JSON
\u2112
Unix/C/PHP/JAVA
0x2112
URL-encode
%E2%84%92

Customize Script Capital L

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

  

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

Insert in HTML

1. Direct symbol:
<span>ℒ</span>
HTML Code:
<span>&#8466;</span>
HEX Code:
<span>&#x2112;</span>

Add with CSS

.script-capital-l::before {
  content: '\\2112';
}

Set it in JavaScript

document.querySelector('.script-capital-l').textContent = 'ℒ';
copied