Latin Small Letter L With Cedilla

ļ

Shortcodes

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

Unicode
U+013C
HTML Code
ļ
HEX Code
ļ
CSS Code
\013C
JS/JSON
\u013C
Unix/C/PHP/JAVA
0x13C
URL-encode
%C4%BC

Customize Latin Small Letter L With Cedilla

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

ļ
  

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

Insert in HTML

1. Direct symbol:
<span>ļ</span>
HTML Code:
<span>&#316;</span>
HEX Code:
<span>&#x013C;</span>

Add with CSS

.latin-small-letter-l-with-cedilla::before {
  content: '\\013C';
}

Set it in JavaScript

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