Latin Capital Letter L With Cedilla

Ļ

Shortcodes

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

Unicode
U+013B
HTML Code
Ļ
HEX Code
Ļ
CSS Code
\013B
JS/JSON
\u013B
Unix/C/PHP/JAVA
0x13B
URL-encode
%C4%BB

Customize Latin Capital Letter L With Cedilla

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

Ļ
  

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

Insert in HTML

1. Direct symbol:
<span>Ļ</span>
HTML Code:
<span>&#315;</span>
HEX Code:
<span>&#x013B;</span>

Add with CSS

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

Set it in JavaScript

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