Subscript Seven

Shortcodes

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

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

Customize Subscript Seven

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

  

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

Insert in HTML

1. Direct symbol:
<span>₇</span>
HTML Code:
<span>&#8327;</span>
HEX Code:
<span>&#x2087;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.subscript-seven').textContent = '₇';
copied