Turned Sans-serif Capital L

Shortcodes

Copy useful codes for turned sans-serif capital l symbol ⅂ to use in websites, apps, blogs, and docs.

Unicode
U+2142
HTML Code
⅂
HEX Code
⅂
CSS Code
\2142
JS/JSON
\u2142
Unix/C/PHP/JAVA
0x2142
URL-encode
%E2%85%82

Customize Turned Sans-serif Capital L

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

  

How to use Turned Sans-serif Capital L Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⅂</span>
HTML Code:
<span>&#8514;</span>
HEX Code:
<span>&#x2142;</span>

Add with CSS

.turned-sans-serif-capital-l::before {
  content: '\\2142';
}

Set it in JavaScript

document.querySelector('.turned-sans-serif-capital-l').textContent = '⅂';
copied