Subscript Five

Shortcodes

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

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

Customize Subscript Five Symbol

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

Insert ₅ Subscript Five using HTML

1. Copy-paste Subscript Five directly:
<span>₅</span>
2. HTML Decimal Code:
<span>&#8325;</span>
3. Hexadecimal Code:
<span>&#x2085;</span>
Preview:

Add Subscript Five symbol with CSS

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

Subscript Five JavaScript Code

1. Direct Symbol:
document.querySelector('.subscript-five').textContent = '₅';
2. Unicode Escape for ₅:
document.querySelector('.subscript-five').textContent = '\u2085';
Preview: