Superscript Latin Small Letter I

Shortcodes

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

Unicode
U+2071
HTML Code
ⁱ
HEX Code
ⁱ
CSS Code
\2071
JS/JSON
\u2071
Unix/C/PHP/JAVA
0x2071
URL-encode
%E2%81%B1

Customize Superscript Latin Small Letter I

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⁱ</span>
HTML Code:
<span>&#8305;</span>
HEX Code:
<span>&#x2071;</span>

Add with CSS

.superscript-latin-small-letter-i::before {
  content: '\\2071';
}

Set it in JavaScript

document.querySelector('.superscript-latin-small-letter-i').textContent = 'ⁱ';
copied