Latin Small Letter L With Caron

ľ

Shortcodes

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

Unicode
U+013E
HTML Code
ľ
HEX Code
ľ
CSS Code
\013E
JS/JSON
\u013E
Unix/C/PHP/JAVA
0x13E
URL-encode
%C4%BE

Customize Latin Small Letter L With Caron

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

ľ
  

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

Insert in HTML

1. Direct symbol:
<span>ľ</span>
HTML Code:
<span>&#318;</span>
HEX Code:
<span>&#x013E;</span>

Add with CSS

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

Set it in JavaScript

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