Superscript Right Parenthesis

Shortcodes

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

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

Customize Superscript Right Parenthesis

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁾</span>
HTML Code:
<span>&#8318;</span>
HEX Code:
<span>&#x207E;</span>

Add with CSS

.superscript-right-parenthesis::before {
  content: '\\207E';
}

Set it in JavaScript

document.querySelector('.superscript-right-parenthesis').textContent = '⁾';
copied