HTML Entity for Subscript Plus (₊)

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

What You'll Learn

How to display the Subscript Plus symbol (₊) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+208A (SUBSCRIPT PLUS SIGN) in the Superscripts and Subscripts block (U+2070–U+209F)—used for a plus sign in subscript position.

Render it with ₊, ₊, or CSS escape \208A. There is no named HTML entity. It is commonly used in mathematical expressions, chemical formulas, and scientific notation where a dedicated subscript plus glyph is needed.

⚡ Quick Reference — Subscript Plus

Unicode U+208A

Superscripts and Subscripts

Hex Code ₊

Hexadecimal reference

HTML Code ₊

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+208A
Hex code       ₊
HTML code      ₊
Named entity   (none)
CSS code       \208A
Block          Superscripts and Subscripts (U+2070–U+209F)
Related        U+208B = Subscript minus (₋)
1

Complete HTML Example

This example demonstrates the Subscript Plus symbol (₊) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\208A";
  }
 </style>
</head>
<body>
<p>Subscript Plus using Hexadecimal: &#x208A;</p>
<p>Subscript Plus using HTML Code: &#8330;</p>
<p id="point">Subscript Plus using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Subscript Plus 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 Subscript Plus symbol (₊) rendered in different contexts:

Inline text Charge notation: Na₊ for a subscript plus sign.
Large glyph
In notation x1 — subscript plus in a formula
Monospace &#x208A; &#8330; \208A
vs regular + Subscript ₊   Regular +

🧠 How It Works

1

Hexadecimal Code

&#x208A; uses the Unicode hexadecimal value 208A to display the Subscript Plus symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\208A 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+208A in the Superscripts and Subscripts block (U+2070–U+209F). No named entity.

Use Cases

The Subscript Plus symbol (₊) commonly appears in:

📐 Math Expressions

Equations and formulas with subscript plus notation.

🧪 Chemical Formulas

Chemistry content and molecular notation with subscript signs.

🔬 Scientific Notation

Research papers and technical documentation.

📚 Academic Content

Textbooks, educational websites, and online courses.

🎓 Education

Tutorials teaching math, chemistry, and physics notation.

📄 Research Papers

Academic journals and conference proceedings.

💻 Math Software

Calculator interfaces and computational tool UIs.

💡 Best Practices

Do

  • Use &#x208A; or &#8330; for the dedicated subscript plus glyph
  • Pick one style (hex or decimal) per project for consistency
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Add aria-label when the symbol stands alone in math content
  • Test rendering across browsers and fonts

Don’t

  • Confuse ₊ with a regular plus sign (+) in subscript context
  • Put CSS escape \208A directly in HTML text nodes
  • Assume every font renders ₊ clearly at small sizes
  • Expect a named HTML entity for U+208A—use numeric references
  • Use HTML entities in JS (use \u208A instead)

Key Takeaways

1

Two HTML references both render ₊

&#x208A; &#8330;
2

For CSS stylesheets, use the escape in the content property

\208A
3

Unicode U+208A — SUBSCRIPT PLUS SIGN

4

No named entity—use numeric references or CSS escape

5

Part of the Superscripts and Subscripts block (U+2070–U+209F)

❓ Frequently Asked Questions

Use &#x208A; (hex), &#8330; (decimal), or \208A in CSS content. There is no named HTML entity. All three produce ₊.
U+208A (SUBSCRIPT PLUS SIGN). Superscripts and Subscripts block (U+2070–U+209F). Hex 208A, decimal 8330.
In mathematical expressions, chemical formulas, scientific notation, academic content, educational materials, research papers, and any content that needs plus signs in subscript notation.
HTML numeric references (&#8330; or &#x208A;) go directly in markup. The CSS escape \208A 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 Latin and math characters, but not every Unicode symbol. Superscripts and Subscripts characters like ₊ use numeric codes (hex or decimal) because they belong to specialized Unicode blocks.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, subscripts, superscripts, 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