Subscript One

Shortcodes

Copy useful codes for subscript one symbol ₁ to use in websites, apps, blogs, and docs.

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

Customize Subscript One

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

  

How to use Subscript One Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>₁</span>
HTML Code:
<span>&#8321;</span>
HEX Code:
<span>&#x2081;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.subscript-one').textContent = '₁';
copied