Superscript Left Parenthesis

Shortcodes

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

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

Customize Superscript Left Parenthesis Symbol

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

Insert ⁽ Superscript Left Parenthesis using HTML

1. Copy-paste Superscript Left Parenthesis directly:
<span>⁽</span>
2. HTML Decimal Code:
<span>&#8317;</span>
3. Hexadecimal Code:
<span>&#x207D;</span>
Preview:

Add Superscript Left Parenthesis symbol with CSS

.superscript-left-parenthesis::before {
    content: '\\207D';
}
Preview: Superscript Left Parenthesis

Superscript Left Parenthesis JavaScript Code

1. Direct Symbol:
document.querySelector('.superscript-left-parenthesis').textContent = '⁽';
2. Unicode Escape for ⁽:
document.querySelector('.superscript-left-parenthesis').textContent = '\u207D';
Preview: