Mathematical Monospace Small L

๐š•

Shortcodes

Copy useful codes for mathematical monospace small l symbol ๐š• to use in websites, apps, blogs, and docs.

Unicode
U+1D695
HTML Code
𝚕
HEX Code
𝚕
CSS Code
\1D695
JS/JSON
\u1D695
Unix/C/PHP/JAVA
0x1D695
URL-encode
%F0%9D%9A%95

Customize Mathematical Monospace Small L

Customize ๐š•, download it as SVG or PNG, or copy the generated HTML snippet.

๐š•
  

How to use Mathematical Monospace Small L Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐š•</span>
HTML Code:
<span>&#120469;</span>
HEX Code:
<span>&#x1D695;</span>

Add with CSS

.mathematical-monospace-small-l::before {
  content: '\\1D695';
}

Set it in JavaScript

document.querySelector('.mathematical-monospace-small-l').textContent = '๐š•';
copied