Subscript Five

Shortcodes

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

Unicode
U+2085
HTML Code
₅
HEX Code
₅
CSS Code
\2085
JS/JSON
\u2085
Unix/C/PHP/JAVA
0x2085
URL-encode
%E2%82%85

Customize Subscript Five

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

  

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

Insert in HTML

1. Direct symbol:
<span>₅</span>
HTML Code:
<span>&#8325;</span>
HEX Code:
<span>&#x2085;</span>

Add with CSS

.subscript-five::before {
  content: '\\2085';
}

Set it in JavaScript

document.querySelector('.subscript-five').textContent = '₅';
copied