Latin Subscript Small Letter L

Shortcodes

Copy useful codes for latin subscript small letter l symbol ₗ to use in websites, apps, blogs, and docs.

Unicode
U+2097
HTML Code
ₗ
HEX Code
ₗ
CSS Code
\2097
JS/JSON
\u2097
Unix/C/PHP/JAVA
0x2097
URL-encode
%E2%82%97

Customize Latin Subscript Small Letter L

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

  

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

Insert in HTML

1. Direct symbol:
<span>ₗ</span>
HTML Code:
<span>&#8343;</span>
HEX Code:
<span>&#x2097;</span>

Add with CSS

.latin-subscript-small-letter-l::before {
  content: '\\2097';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-l').textContent = 'ₗ';
copied