Latin Letter Small Capital L

ʟ

Shortcodes

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

Unicode
U+029F
HTML Code
ʟ
HEX Code
ʟ
CSS Code
\029F
JS/JSON
\u029F
Unix/C/PHP/JAVA
0x29F
URL-encode
%CA%9F

Customize Latin Letter Small Capital L

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

ʟ
  

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

Insert in HTML

1. Direct symbol:
<span>ʟ</span>
HTML Code:
<span>&#671;</span>
HEX Code:
<span>&#x029F;</span>

Add with CSS

.latin-letter-small-capital-l::before {
  content: '\\029F';
}

Set it in JavaScript

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