HTML Entity for Superscript Left Parenthesis (⁽)

What You'll Learn
How to display the Superscript Left Parenthesis symbol (⁽) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+207D (SUPERSCRIPT LEFT PARENTHESIS) in the Superscripts and Subscripts block (U+2070–U+209F)—used for superscript parenthetical expressions in math, chemistry, and typography.
Render it with ⁽, ⁽, or CSS escape \207D. There is no named HTML entity. Pair ⁽ with ⁾ (superscript right parenthesis) for balanced notation like ⁽n⁾. Do not confuse with regular ( or subscript ₍.
⚡ Quick Reference — Superscript Left Parenthesis
U+207DSuperscripts and Subscripts
⁽Hexadecimal reference
⁽Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+207D
Hex code ⁽
HTML code ⁽
Named entity (none)
CSS code \207D
Block Superscripts and Subscripts (U+2070–U+209F)
Related U+207E = Superscript Right Paren (⁾)Complete HTML Example
This example demonstrates the Superscript Left Parenthesis symbol (⁽) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\207D";
}
</style>
</head>
<body>
<p>Using Hexadecimal: ⁽</p>
<p>Using HTML Code: ⁽</p>
<p>Paired: ⁽n⁾</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Superscript Left Parenthesis entity is universally supported in all modern browsers:
👀 Live Preview
See the Superscript Left Parenthesis symbol (⁽) rendered in different contexts:
🧠 How It Works
Hexadecimal Code
⁽ uses the Unicode hexadecimal value 207D to display the symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⁽ uses the decimal Unicode value 8317 to display the same character. This is one of the most commonly used methods.
CSS Entity
\207D is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ⁽. Unicode U+207D in the Superscripts and Subscripts block (U+2070–U+209F). No named entity.
Use Cases
The Superscript Left Parenthesis symbol (⁽) commonly appears in:
Superscript parenthetical groups in formulas.
Molecular notation and scientific documentation.
Research papers and scholarly articles.
Technical documentation and math web apps.
Footnotes, citations, and editorial design.
Online courses and science tutorials.
Bibliographies and reference materials.
💡 Best Practices
Do
- Use
⁽or⁽for the dedicated superscript glyph - Pair ⁽ with ⁾ (superscript right parenthesis) when needed
- Pick one style (hex or decimal) per project for consistency
- Add
aria-labelfor standalone symbols in math content - Test rendering across browsers and fonts
Don’t
- Confuse ⁽ (superscript) with ₍ (subscript left paren) or regular (
- Put CSS escape
\207Ddirectly in HTML text nodes - Expect a named HTML entity for U+207D—use numeric references
- Use HTML entities in JS (use
\u207Dinstead) - Leave ⁽ unpaired when a closing ⁾ is required
Key Takeaways
Two HTML references both render ⁽
⁽ ⁽For CSS stylesheets, use the escape in the content property
\207DUnicode U+207D — SUPERSCRIPT LEFT PARENTHESIS
No named entity—use numeric references or CSS escape
Pair with ⁾ for balanced superscript parentheses
❓ Frequently Asked Questions
⁽ (hex), ⁽ (decimal), or \207D in CSS content. There is no named HTML entity. All three produce ⁽.U+207D (SUPERSCRIPT LEFT PARENTHESIS). Superscripts and Subscripts block (U+2070–U+209F). Hex 207D, decimal 8317.⁽ or ⁽) go directly in markup. The CSS escape \207D is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — superscripts, subscripts, math, and more.
8 people found this page helpful
