Subscript Two

Shortcodes

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

Unicode
U+2082
HTML Code
₂
HEX Code
₂
CSS Code
\2082
JS/JSON
\u2082
Unix/C/PHP/JAVA
0x2082
URL-encode
%E2%82%82

Customize Subscript Two

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

  

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

Insert in HTML

1. Direct symbol:
<span>₂</span>
HTML Code:
<span>&#8322;</span>
HEX Code:
<span>&#x2082;</span>

Add with CSS

.subscript-two::before {
  content: '\\2082';
}

Set it in JavaScript

document.querySelector('.subscript-two').textContent = '₂';
copied