Subscript Plus Sign

Shortcodes

Copy useful codes for subscript plus sign ₊ to use in websites, apps, blogs, and docs.

Unicode
U+208A
HTML Code
₊
HEX Code
₊
CSS Code
\208A
JS/JSON
\u208A
Unix/C/PHP/JAVA
0x208A
URL-encode
%E2%82%8A

Customize Subscript Plus Sign

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

  

How to use Subscript Plus Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>₊</span>
HTML Code:
<span>&#8330;</span>
HEX Code:
<span>&#x208A;</span>

Add with CSS

.subscript-plus-sign::before {
  content: '\\208A';
}

Set it in JavaScript

document.querySelector('.subscript-plus-sign').textContent = '₊';
copied