Subscript Six

Shortcodes

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

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

Customize Subscript Six

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

  

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

Insert in HTML

1. Direct symbol:
<span>₆</span>
HTML Code:
<span>&#8326;</span>
HEX Code:
<span>&#x2086;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.subscript-six').textContent = '₆';
copied