Subscript Three

Shortcodes

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

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

Customize Subscript Three

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

  

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

Insert in HTML

1. Direct symbol:
<span>₃</span>
HTML Code:
<span>&#8323;</span>
HEX Code:
<span>&#x2083;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.subscript-three').textContent = '₃';
copied