Double-struck Italic Small I

Shortcodes

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

Unicode
U+2148
HTML Code
ⅈ
HEX Code
ⅈ
CSS Code
\2148
JS/JSON
\u2148
Unix/C/PHP/JAVA
0x2148
URL-encode
%E2%85%88

Customize Double-struck Italic Small I

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⅈ</span>
HTML Code:
<span>&#8520;</span>
HEX Code:
<span>&#x2148;</span>

Add with CSS

.double-struck-italic-small-i::before {
  content: '\\2148';
}

Set it in JavaScript

document.querySelector('.double-struck-italic-small-i').textContent = 'ⅈ';
copied