Latin Capital Letter L With Acute

Ĺ

Shortcodes

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

Unicode
U+0139
HTML Code
Ĺ
HEX Code
Ĺ
CSS Code
\0139
JS/JSON
\u0139
Unix/C/PHP/JAVA
0x139
URL-encode
%C4%B9

Customize Latin Capital Letter L With Acute

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

Ĺ
  

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

Insert in HTML

1. Direct symbol:
<span>Ĺ</span>
HTML Code:
<span>&#313;</span>
HEX Code:
<span>&#x0139;</span>

Add with CSS

.latin-capital-letter-l-with-acute::before {
  content: '\\0139';
}

Set it in JavaScript

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