Subscript Right Parenthesis

Shortcodes

Copy useful codes for subscript right parenthesis symbol ₎ to use in websites, apps, blogs, and docs.

Unicode
U+208E
HTML Code
₎
HEX Code
₎
CSS Code
\208E
JS/JSON
\u208E
Unix/C/PHP/JAVA
0x208E
URL-encode
%E2%82%8E

Customize Subscript Right Parenthesis

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

  

How to use Subscript Right Parenthesis Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>₎</span>
HTML Code:
<span>&#8334;</span>
HEX Code:
<span>&#x208E;</span>

Add with CSS

.subscript-right-parenthesis::before {
  content: '\\208E';
}

Set it in JavaScript

document.querySelector('.subscript-right-parenthesis').textContent = '₎';
copied