Subscript Seven

Shortcodes

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

Unicode
U+2087
HTML Code
₇
HEX Code
₇
CSS Code
\2087
JS/JSON
\u2087
Unix/C/PHP/JAVA
0x2087
URL-encode
%E2%82%87
copied

Customize Subscript Seven Symbol

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

Insert ₇ Subscript Seven using HTML

1. Copy-paste Subscript Seven directly:
<span>₇</span>
2. HTML Decimal Code:
<span>&#8327;</span>
3. Hexadecimal Code:
<span>&#x2087;</span>
Preview:

Add Subscript Seven symbol with CSS

.subscript-seven::before {
    content: '\\2087';
}
Preview: Subscript Seven

Subscript Seven JavaScript Code

1. Direct Symbol:
document.querySelector('.subscript-seven').textContent = '₇';
2. Unicode Escape for ₇:
document.querySelector('.subscript-seven').textContent = '\u2087';
Preview: