Double-struck Italic Small J

Shortcodes

Copy useful codes for double-struck italic small j symbol ⅉ to use in websites, apps, blogs, and docs.

Unicode
U+2149
HTML Code
ⅉ
HEX Code
ⅉ
CSS Code
\2149
JS/JSON
\u2149
Unix/C/PHP/JAVA
0x2149
URL-encode
%E2%85%89

Customize Double-struck Italic Small J

Customize ⅉ, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Double-struck Italic Small J Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ⅉ</span>
HTML Code:
<span>&#8521;</span>
HEX Code:
<span>&#x2149;</span>

Add with CSS

.double-struck-italic-small-j::before {
  content: '\\2149';
}

Set it in JavaScript

document.querySelector('.double-struck-italic-small-j').textContent = 'ⅉ';
copied