Latin Small Letter L With Acute

ĺ

Shortcodes

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

Unicode
U+013A
HTML Code
ĺ
HEX Code
ĺ
CSS Code
\013A
JS/JSON
\u013A
Unix/C/PHP/JAVA
0x13A
URL-encode
%C4%BA

Customize Latin Small Letter L With Acute

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

ĺ
  

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

Insert in HTML

1. Direct symbol:
<span>ĺ</span>
HTML Code:
<span>&#314;</span>
HEX Code:
<span>&#x013A;</span>

Add with CSS

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

Set it in JavaScript

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