Mathematical Script Small J

๐’ฟ

Shortcodes

Copy useful codes for mathematical script small j symbol ๐’ฟ to use in websites, apps, blogs, and docs.

Unicode
U+1D4BF
HTML Code
𝒿
HEX Code
𝒿
CSS Code
\1D4BF
JS/JSON
\u1D4BF
Unix/C/PHP/JAVA
0x1D4BF
URL-encode
%F0%9D%92%BF

Customize Mathematical Script Small J

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

๐’ฟ
  

How to use Mathematical Script Small J Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐’ฟ</span>
HTML Code:
<span>&#119999;</span>
HEX Code:
<span>&#x1D4BF;</span>

Add with CSS

.mathematical-script-small-j::before {
  content: '\\1D4BF';
}

Set it in JavaScript

document.querySelector('.mathematical-script-small-j').textContent = '๐’ฟ';
copied