Superscript Latin Small Letter I

Shortcodes

Copy and paste codes for Superscript Latin Small Letter I symbol ⁱ to use in your websites, apps, blogs, and more.

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

Customize Superscript Latin Small Letter I Symbol

Customize ⁱ symbol as you like and download Superscript Latin Small Letter I as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Superscript Latin Small Letter I symbol in HTML, CSS, and JS?

Insert ⁱ Superscript Latin Small Letter I using HTML

1. Copy-paste Superscript Latin Small Letter I directly:
<span>ⁱ</span>
2. HTML Decimal Code:
<span>&#8305;</span>
3. Hexadecimal Code:
<span>&#x2071;</span>
Preview:

Add Superscript Latin Small Letter I symbol with CSS

.superscript-latin-small-letter-i::before {
    content: '\\2071';
}
Preview: Superscript Latin Small Letter I

Superscript Latin Small Letter I JavaScript Code

1. Direct Symbol:
document.querySelector('.superscript-latin-small-letter-i').textContent = 'ⁱ';
2. Unicode Escape for ⁱ:
document.querySelector('.superscript-latin-small-letter-i').textContent = '\u2071';
Preview: