Latin Capital Letter L With Caron

Ľ

Shortcodes

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

Unicode
U+013D
HTML Code
Ľ
HEX Code
Ľ
CSS Code
\013D
JS/JSON
\u013D
Unix/C/PHP/JAVA
0x13D
URL-encode
%C4%BD

Customize Latin Capital Letter L With Caron

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

Ľ
  

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

Insert in HTML

1. Direct symbol:
<span>Ľ</span>
HTML Code:
<span>&#317;</span>
HEX Code:
<span>&#x013D;</span>

Add with CSS

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

Set it in JavaScript

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