Latin Small Letter L

l

Shortcodes

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

Unicode
U+006C
Alt Code
108
HTML Code
l
HEX Code
l
CSS Code
\006C
JS/JSON
\u006C
Unix/C/PHP/JAVA
0x6C
URL-encode
l

Customize Latin Small Letter L

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

l
  

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

Insert in HTML

1. Direct symbol:
<span>l</span>
HTML Code:
<span>&#108;</span>
HEX Code:
<span>&#x006C;</span>

Add with CSS

.latin-small-letter-l::before {
  content: '\\006C';
}

Set it in JavaScript

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