Subscript Three

Shortcodes

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

Unicode
U+2083
HTML Code
₃
HEX Code
₃
CSS Code
\2083
JS/JSON
\u2083
Unix/C/PHP/JAVA
0x2083
URL-encode
%E2%82%83
copied

Customize Subscript Three Symbol

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

Insert ₃ Subscript Three using HTML

1. Copy-paste Subscript Three directly:
<span>₃</span>
2. HTML Decimal Code:
<span>&#8323;</span>
3. Hexadecimal Code:
<span>&#x2083;</span>
Preview:

Add Subscript Three symbol with CSS

.subscript-three::before {
    content: '\\2083';
}
Preview: Subscript Three

Subscript Three JavaScript Code

1. Direct Symbol:
document.querySelector('.subscript-three').textContent = '₃';
2. Unicode Escape for ₃:
document.querySelector('.subscript-three').textContent = '\u2083';
Preview: