Mathematical Bold Small I

๐ข

Shortcodes

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

Unicode
U+1D422
HTML Code
𝐢
HEX Code
𝐢
CSS Code
\1D422
JS/JSON
\u1D422
Unix/C/PHP/JAVA
0x1D422
URL-encode
%F0%9D%90%A2

Customize Mathematical Bold Small I

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

๐ข
  

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

Insert in HTML

1. Direct symbol:
<span>๐ข</span>
HTML Code:
<span>&#119842;</span>
HEX Code:
<span>&#x1D422;</span>

Add with CSS

.mathematical-bold-small-i::before {
  content: '\\1D422';
}

Set it in JavaScript

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