Latin Subscript Small Letter I

Shortcodes

Copy useful codes for latin subscript small letter i symbol ᵢ to use in websites, apps, blogs, and docs.

Unicode
U+1D62
HTML Code
ᵢ
HEX Code
ᵢ
CSS Code
\1D62
JS/JSON
\u1D62
Unix/C/PHP/JAVA
0x1D62
URL-encode
%E1%B5%A2

Customize Latin Subscript Small Letter I

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

  

How to use Latin Subscript Small Letter I Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ᵢ</span>
HTML Code:
<span>&#7522;</span>
HEX Code:
<span>&#x1D62;</span>

Add with CSS

.latin-subscript-small-letter-i::before {
  content: '\\1D62';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-i').textContent = 'ᵢ';
copied