Latin Capital Letter L With Middle Dot

Ŀ

Shortcodes

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

Unicode
U+013F
HTML Code
Ŀ
HEX Code
Ŀ
CSS Code
\013F
JS/JSON
\u013F
Unix/C/PHP/JAVA
0x13F
URL-encode
%C4%BF

Customize Latin Capital Letter L With Middle Dot

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

Ŀ
  

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

Insert in HTML

1. Direct symbol:
<span>Ŀ</span>
HTML Code:
<span>&#319;</span>
HEX Code:
<span>&#x013F;</span>

Add with CSS

.latin-capital-letter-l-with-middle-dot::before {
  content: '\\013F';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-l-with-middle-dot').textContent = 'Ŀ';
copied