Mathematical Monospace Small J

๐š“

Shortcodes

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

Unicode
U+1D693
HTML Code
𝚓
HEX Code
𝚓
CSS Code
\1D693
JS/JSON
\u1D693
Unix/C/PHP/JAVA
0x1D693
URL-encode
%F0%9D%9A%93

Customize Mathematical Monospace Small J

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

๐š“
  

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

Insert in HTML

1. Direct symbol:
<span>๐š“</span>
HTML Code:
<span>&#120467;</span>
HEX Code:
<span>&#x1D693;</span>

Add with CSS

.mathematical-monospace-small-j::before {
  content: '\\1D693';
}

Set it in JavaScript

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