Subscript Minus

Shortcodes

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

Unicode
U+208B
HTML Code
₋
HEX Code
₋
CSS Code
\208B
JS/JSON
\u208B
Unix/C/PHP/JAVA
0x208B
URL-encode
%E2%82%8B
copied

Customize Subscript Minus Symbol

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

Insert ₋ Subscript Minus using HTML

1. Copy-paste Subscript Minus directly:
<span>₋</span>
2. HTML Decimal Code:
<span>&#8331;</span>
3. Hexadecimal Code:
<span>&#x208B;</span>
Preview:

Add Subscript Minus symbol with CSS

.subscript-minus::before {
    content: '\\208B';
}
Preview: Subscript Minus

Subscript Minus JavaScript Code

1. Direct Symbol:
document.querySelector('.subscript-minus').textContent = '₋';
2. Unicode Escape for ₋:
document.querySelector('.subscript-minus').textContent = '\u208B';
Preview: