Superscript Right Parenthesis

Shortcodes

Copy and paste codes for Superscript Right Parenthesis symbol ⁾ to use in your websites, apps, blogs, and more.

Unicode
U+207E
HTML Code
⁾
HEX Code
⁾
CSS Code
\207E
JS/JSON
\u207E
Unix/C/PHP/JAVA
0x207E
URL-encode
%E2%81%BE
copied

Customize Superscript Right Parenthesis Symbol

Customize ⁾ symbol as you like and download Superscript Right Parenthesis 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 Superscript Right Parenthesis symbol in HTML, CSS, and JS?

Insert ⁾ Superscript Right Parenthesis using HTML

1. Copy-paste Superscript Right Parenthesis directly:
<span>⁾</span>
2. HTML Decimal Code:
<span>&#8318;</span>
3. Hexadecimal Code:
<span>&#x207E;</span>
Preview:

Add Superscript Right Parenthesis symbol with CSS

.superscript-right-parenthesis::before {
    content: '\\207E';
}
Preview: Superscript Right Parenthesis

Superscript Right Parenthesis JavaScript Code

1. Direct Symbol:
document.querySelector('.superscript-right-parenthesis').textContent = '⁾';
2. Unicode Escape for ⁾:
document.querySelector('.superscript-right-parenthesis').textContent = '\u207E';
Preview: