Fullwidth Latin Small Letter L

Shortcodes

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

Unicode
U+FF4C
HTML Code
l
HEX Code
l
CSS Code
\FF4C
JS/JSON
\uFF4C
Unix/C/PHP/JAVA
0xFF4C
URL-encode
%EF%BD%8C

Customize Fullwidth Latin Small Letter L

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

  

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

Insert in HTML

1. Direct symbol:
<span>l</span>
HTML Code:
<span>&#65356;</span>
HEX Code:
<span>&#xFF4C;</span>

Add with CSS

.fullwidth-latin-small-letter-l::before {
  content: '\\FF4C';
}

Set it in JavaScript

document.querySelector('.fullwidth-latin-small-letter-l').textContent = 'l';
copied