Latin Small Letter L With Middle Dot

ŀ

Shortcodes

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

Unicode
U+0140
HTML Code
ŀ
HEX Code
ŀ
CSS Code
\0140
JS/JSON
\u0140
Unix/C/PHP/JAVA
0x140
URL-encode
%C5%80

Customize Latin Small Letter L With Middle Dot

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

ŀ
  

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

Insert in HTML

1. Direct symbol:
<span>ŀ</span>
HTML Code:
<span>&#320;</span>
HEX Code:
<span>&#x0140;</span>

Add with CSS

.latin-small-letter-l-with-middle-dot::before {
  content: '\\0140';
}

Set it in JavaScript

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