Subscript Six

Shortcodes

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

Unicode
U+2086
HTML Code
₆
HEX Code
₆
CSS Code
\2086
JS/JSON
\u2086
Unix/C/PHP/JAVA
0x2086
URL-encode
%E2%82%86
copied

Customize Subscript Six Symbol

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

Insert ₆ Subscript Six using HTML

1. Copy-paste Subscript Six directly:
<span>₆</span>
2. HTML Decimal Code:
<span>&#8326;</span>
3. Hexadecimal Code:
<span>&#x2086;</span>
Preview:

Add Subscript Six symbol with CSS

.subscript-six::before {
    content: '\\2086';
}
Preview: Subscript Six

Subscript Six JavaScript Code

1. Direct Symbol:
document.querySelector('.subscript-six').textContent = '₆';
2. Unicode Escape for ₆:
document.querySelector('.subscript-six').textContent = '\u2086';
Preview: