Superscript Left Parenthesis

Shortcodes

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

Unicode
U+207D
HTML Code
⁽
HEX Code
⁽
CSS Code
\207D
JS/JSON
\u207D
Unix/C/PHP/JAVA
0x207D
URL-encode
%E2%81%BD

Customize Superscript Left Parenthesis

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁽</span>
HTML Code:
<span>&#8317;</span>
HEX Code:
<span>&#x207D;</span>

Add with CSS

.superscript-left-parenthesis::before {
  content: '\\207D';
}

Set it in JavaScript

document.querySelector('.superscript-left-parenthesis').textContent = '⁽';
copied