Mathematical Bold Small J

๐ฃ

Shortcodes

Copy useful codes for mathematical bold small j symbol ๐ฃ to use in websites, apps, blogs, and docs.

Unicode
U+1D423
HTML Code
𝐣
HEX Code
𝐣
CSS Code
\1D423
JS/JSON
\u1D423
Unix/C/PHP/JAVA
0x1D423
URL-encode
%F0%9D%90%A3

Customize Mathematical Bold Small J

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

๐ฃ
  

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

Insert in HTML

1. Direct symbol:
<span>๐ฃ</span>
HTML Code:
<span>&#119843;</span>
HEX Code:
<span>&#x1D423;</span>

Add with CSS

.mathematical-bold-small-j::before {
  content: '\\1D423';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-small-j').textContent = '๐ฃ';
copied