Fullwidth Latin Capital Letter L

Shortcodes

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

Unicode
U+FF2C
HTML Code
L
HEX Code
L
CSS Code
\FF2C
JS/JSON
\uFF2C
Unix/C/PHP/JAVA
0xFF2C
URL-encode
%EF%BC%AC

Customize Fullwidth Latin Capital Letter L

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

  

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

Insert in HTML

1. Direct symbol:
<span>L</span>
HTML Code:
<span>&#65324;</span>
HEX Code:
<span>&#xFF2C;</span>

Add with CSS

.fullwidth-latin-capital-letter-l::before {
  content: '\\FF2C';
}

Set it in JavaScript

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