HTML Entity for Superscript Left Parenthesis (⁽)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+207D

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

Unicode U+207D

Superscripts and Subscripts

Hex Code ⁽

Hexadecimal reference

HTML Code ⁽

Decimal reference

Named Entity

Use numeric codes only

Reference Table
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 (⁾)
1

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):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\207D";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x207D;</p>
<p>Using HTML Code: &#8317;</p>
<p>Paired: &#x207D;n&#x207E;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Superscript Left Parenthesis entity is universally supported in all modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Superscript Left Parenthesis symbol (⁽) rendered in different contexts:

Paired ⁽n⁾ — superscript parenthetical expression
Large glyph
vs regular ⁽ superscript   ( regular parenthesis
Monospace &#x207D; &#8317; \207D
No named entity Use ⁽ via numeric codes only

🧠 How It Works

1

Hexadecimal Code

&#x207D; uses the Unicode hexadecimal value 207D to display the symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8317; uses the decimal Unicode value 8317 to display the same character. This is one of the most commonly used methods.

HTML markup
3

CSS Entity

\207D is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

📐 Math Expressions

Superscript parenthetical groups in formulas.

⚗ Chemical Formulas

Molecular notation and scientific documentation.

📚 Academic Content

Research papers and scholarly articles.

📄 Scientific Docs

Technical documentation and math web apps.

📝 Typography

Footnotes, citations, and editorial design.

🎓 Education

Online courses and science tutorials.

📖 Citations

Bibliographies and reference materials.

💡 Best Practices

Do

  • Use &#x207D; or &#8317; for the dedicated superscript glyph
  • Pair ⁽ with ⁾ (superscript right parenthesis) when needed
  • Pick one style (hex or decimal) per project for consistency
  • Add aria-label for standalone symbols in math content
  • Test rendering across browsers and fonts

Don’t

  • Confuse ⁽ (superscript) with ₍ (subscript left paren) or regular (
  • Put CSS escape \207D directly in HTML text nodes
  • Expect a named HTML entity for U+207D—use numeric references
  • Use HTML entities in JS (use \u207D instead)
  • Leave ⁽ unpaired when a closing ⁾ is required

Key Takeaways

1

Two HTML references both render ⁽

&#x207D; &#8317;
2

For CSS stylesheets, use the escape in the content property

\207D
3

Unicode U+207D — SUPERSCRIPT LEFT PARENTHESIS

4

No named entity—use numeric references or CSS escape

5

Pair with ⁾ for balanced superscript parentheses

❓ Frequently Asked Questions

Use &#x207D; (hex), &#8317; (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.
In mathematical expressions, chemical formulas, academic content, scientific documentation, typography, footnotes, citations, and any content requiring superscript parenthetical notation.
HTML numeric references (&#8317; or &#x207D;) 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.
Named HTML entities cover common ASCII, Latin-1, and select math symbols. Characters like ⁽ in the Superscripts and Subscripts block use numeric hex or decimal references—standard practice for typographic characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — superscripts, subscripts, math, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful