HTML Entity for Subscript Right Parenthesis (₎)

What You'll Learn
How to display the Subscript Right Parenthesis symbol (₎) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+208E (SUBSCRIPT RIGHT PARENTHESIS) in the Superscripts and Subscripts block (U+2070–U+209F)—used for a right parenthesis in subscript position.
Render it with ₎, ₎, or CSS escape \208E. There is no named HTML entity. It is typically paired with the subscript left parenthesis (₍) to form subscript parenthetical expressions in math and science notation.
⚡ Quick Reference — Subscript Right Parenthesis
U+208ESuperscripts and Subscripts
₎Hexadecimal reference
₎Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+208E
Hex code ₎
HTML code ₎
Named entity (none)
CSS code \208E
Block Superscripts and Subscripts (U+2070–U+209F)
Pair with U+208D = Subscript left parenthesis (₍)Complete HTML Example
This example demonstrates the Subscript Right Parenthesis symbol (₎) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\208E";
}
</style>
</head>
<body>
<p>Subscript Right Parenthesis using Hexadecimal: ₎</p>
<p>Subscript Right Parenthesis using HTML Code: ₎</p>
<p id="point">Subscript Right Parenthesis using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Subscript Right Parenthesis entity is universally supported in all modern browsers:
👀 Live Preview
See the Subscript Right Parenthesis symbol (₎) rendered in different contexts:
🧠 How It Works
Hexadecimal Code
₎ uses the Unicode hexadecimal value 208E to display the Subscript Right Parenthesis symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
₎ uses the decimal Unicode value 8334 to display the same character. This is one of the most commonly used methods.
CSS Entity
\208E 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+208E in the Superscripts and Subscripts block (U+2070–U+209F). Pair with ₍ for an opening subscript parenthesis.
Use Cases
The Subscript Right Parenthesis symbol (₎) commonly appears in:
Closing subscript parentheses in equations and formulas.
Scientific notation and molecular formula annotations.
Research papers and technical documentation.
Textbooks, educational websites, and online courses.
Tutorials teaching math, chemistry, and physics notation.
Academic journals and conference proceedings.
Close subscript parens paired with ₍ (subscript left parenthesis).
💡 Best Practices
Do
- Use
₎or₎for the dedicated subscript right paren glyph - Pair ₎ with ₍ when forming subscript parenthetical expressions
- Pick one style (hex or decimal) per project for consistency
- Add
aria-labelwhen the symbol stands alone - Test rendering across browsers and fonts
Don’t
- Confuse ₎ with a regular right parenthesis ()) in subscript context
- Put CSS escape
\208Edirectly in HTML text nodes - Leave ₎ unpaired when an opening subscript paren is required
- Expect a named HTML entity for U+208E—use numeric references
- Use HTML entities in JS (use
\u208Einstead)
Key Takeaways
Two HTML references both render ₎
₎ ₎For CSS stylesheets, use the escape in the content property
\208EUnicode U+208E — SUBSCRIPT RIGHT PARENTHESIS
No named entity—use numeric references or CSS escape
Typically paired with ₍ (U+208D) for subscript parenthetical notation
❓ Frequently Asked Questions
₎ (hex), ₎ (decimal), or \208E in CSS content. There is no named HTML entity. All three produce ₎.U+208E (SUBSCRIPT RIGHT PARENTHESIS). Superscripts and Subscripts block (U+2070–U+209F). Hex 208E, decimal 8334.₎ or ₎) go directly in markup. The CSS escape \208E 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 — math operators, subscripts, superscripts, and more.
8 people found this page helpful
