Subscript One

Shortcodes

Copy and paste codes for Subscript One symbol ₁ to use in your websites, apps, blogs, and more.

Unicode
U+2081
HTML Code
₁
HEX Code
₁
CSS Code
\2081
JS/JSON
\u2081
Unix/C/PHP/JAVA
0x2081
URL-encode
%E2%82%81
copied

Customize Subscript One Symbol

Customize ₁ symbol as you like and download Subscript One 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 Subscript One symbol in HTML, CSS, and JS?

Insert ₁ Subscript One using HTML

1. Copy-paste Subscript One directly:
<span>₁</span>
2. HTML Decimal Code:
<span>&#8321;</span>
3. Hexadecimal Code:
<span>&#x2081;</span>
Preview:

Add Subscript One symbol with CSS

.subscript-one::before {
    content: '\\2081';
}
Preview: Subscript One

Subscript One JavaScript Code

1. Direct Symbol:
document.querySelector('.subscript-one').textContent = '₁';
2. Unicode Escape for ₁:
document.querySelector('.subscript-one').textContent = '\u2081';
Preview: