Mathematical Fraktur Small L

๐”ฉ

Shortcodes

Copy useful codes for mathematical fraktur small l symbol ๐”ฉ to use in websites, apps, blogs, and docs.

Unicode
U+1D529
HTML Code
𝔩
HEX Code
𝔩
CSS Code
\1D529
JS/JSON
\u1D529
Unix/C/PHP/JAVA
0x1D529
URL-encode
%F0%9D%94%A9

Customize Mathematical Fraktur Small L

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

๐”ฉ
  

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

Insert in HTML

1. Direct symbol:
<span>๐”ฉ</span>
HTML Code:
<span>&#120105;</span>
HEX Code:
<span>&#x1D529;</span>

Add with CSS

.mathematical-fraktur-small-l::before {
  content: '\\1D529';
}

Set it in JavaScript

document.querySelector('.mathematical-fraktur-small-l').textContent = '๐”ฉ';
copied