HTML Entity for Superscript Plus (⁺)

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

What You'll Learn

How to display the Superscript Plus symbol (⁺) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+207A (SUPERSCRIPT PLUS SIGN) in the Superscripts and Subscripts block (U+2070–U+209F)—used for ion charges like Na⁺, math notation, and superscript typography.

Render it with ⁺, ⁺, or CSS escape \207A. There is no named HTML entity. Do not confuse ⁺ (superscript plus) with the regular plus sign + (U+002B).

⚡ Quick Reference — Superscript Plus

Unicode U+207A

Superscripts and Subscripts

Hex Code ⁺

Hexadecimal reference

HTML Code ⁺

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+207A
Hex code       ⁺
HTML code      ⁺
Named entity   (none)
CSS code       \207A
Block          Superscripts and Subscripts (U+2070–U+209F)
Related        U+207B = Superscript Minus (⁻)
1

Complete HTML Example

This example demonstrates the Superscript 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: "\207A";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x207A;</p>
<p>Using HTML Code: &#8314;</p>
<p>Ion charge: Na&#x207A;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

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

Ion charge Na⁺ — sodium ion (positive charge)
Chemistry Ca²⁺ — calcium ion (2+ charge)
Large glyph
Monospace &#x207A; &#8314; \207A
Not regular + ⁺ superscript plus   + regular plus (U+002B)

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

Use Cases

The Superscript Plus symbol (⁺) commonly appears in:

⚗ Chemical Formulas

Ion charges like Na⁺ and Ca²⁺.

📐 Math Expressions

Superscript addition and algebraic notation.

📚 Academic Content

Research papers and scholarly articles.

📄 Scientific Docs

Technical documentation and lab reports.

✎ Typography

Footnotes, citations, and editorial design.

🎓 Education

Online courses in math and chemistry.

📝 Citations

Bibliographies and reference materials.

💡 Best Practices

Do

  • Use &#x207A; or &#8314; for superscript plus notation
  • Pair with element symbols for ion charges (e.g. Na⁺)
  • Pick one style (hex or decimal) per project for consistency
  • Add aria-label for standalone symbols in chemistry content
  • Test rendering across browsers and fonts

Don’t

  • Use a regular plus sign + where a superscript glyph is needed
  • Confuse ⁺ (superscript plus) with ⁻ (superscript minus)
  • Put CSS escape \207A directly in HTML text nodes
  • Expect a named HTML entity for U+207A—use numeric references
  • Use HTML entities in JS (use \u207A instead)

Key Takeaways

1

Two HTML references both render ⁺

&#x207A; &#8314;
2

For CSS stylesheets, use the escape in the content property

\207A
3

Unicode U+207A — SUPERSCRIPT PLUS SIGN

4

No named entity—use numeric references or CSS escape

5

Pair with ⁻ (superscript minus) for signed notation

❓ Frequently Asked Questions

Use &#x207A; (hex), &#8314; (decimal), or \207A in CSS content. There is no named HTML entity. All three produce ⁺.
U+207A (SUPERSCRIPT PLUS SIGN). Superscripts and Subscripts block (U+2070–U+209F). Hex 207A, decimal 8314.
In mathematical expressions, chemical formulas (e.g. Na⁺), academic content, scientific documentation, typography, footnotes, citations, and any content requiring superscript plus notation.
HTML numeric references (&#8314; or &#x207A;) go directly in markup. The CSS escape \207A 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 superscript 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