HTML Entity for Superscript Minus (⁻)

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

What You'll Learn

How to display the Superscript Minus symbol (⁻) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+207B (SUPERSCRIPT MINUS SIGN) in the Superscripts and Subscripts block (U+2070–U+209F)—used for negative exponents like x⁻² and scientific notation like 10⁻³.

Render it with ⁻, ⁻, or CSS escape \207B. There is no named HTML entity. Do not confuse ⁻ (superscript minus) with ≻ (succeeds, U+227B) or regular hyphen-minus.

⚡ Quick Reference — Superscript Minus

Unicode U+207B

Superscripts and Subscripts

Hex Code ⁻

Hexadecimal reference

HTML Code ⁻

Decimal reference

Named Entity

Use numeric codes only

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

Complete HTML Example

This example demonstrates the Superscript Minus symbol (⁻) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\207B";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x207B;</p>
<p>Using HTML Code: &#8315;</p>
<p>Negative exponent: x&#x207B;2</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

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

Exponent x⁻² — x to the power of negative 2
Scientific 10⁻³ — ten to the minus three
Large glyph
Monospace &#x207B; &#8315; \207B
Not succeeds ⁻ superscript minus   ≻ succeeds (U+227B)

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

Use Cases

The Superscript Minus symbol (⁻) commonly appears in:

📐 Math Expressions

Negative exponents like x⁻² and 10⁻³.

⚗ Chemical Formulas

Scientific notation and chemistry content.

📚 Academic Content

Textbooks, papers, and online courses.

📄 Scientific Docs

Technical documentation and research.

🎓 Education

Tutorials on exponents and notation.

📝 Research Papers

Journals and conference proceedings.

💻 Math Software

Calculator interfaces and computational UIs.

💡 Best Practices

Do

  • Use &#x207B; or &#8315; for superscript minus notation
  • Pair with superscript digits for exponents (e.g. x⁻2)
  • 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 minus) with ≻ (succeeds, U+227B)
  • Use a regular hyphen-minus where a superscript glyph is needed
  • Put CSS escape \207B directly in HTML text nodes
  • Expect a named HTML entity for U+207B—use numeric references
  • Use HTML entities in JS (use \u207B instead)

Key Takeaways

1

Two HTML references both render ⁻

&#x207B; &#8315;
2

For CSS stylesheets, use the escape in the content property

\207B
3

Unicode U+207B — SUPERSCRIPT MINUS SIGN

4

No named entity—use numeric references or CSS escape

5

Pair with ⁺ (superscript plus) for signed exponents

❓ Frequently Asked Questions

Use &#x207B; (hex), &#8315; (decimal), or \207B in CSS content. There is no named HTML entity. All three produce ⁻.
U+207B (SUPERSCRIPT MINUS SIGN). Superscripts and Subscripts block (U+2070–U+209F). Hex 207B, decimal 8315.
In mathematical expressions, chemical formulas, scientific notation, academic content, educational materials, research papers, and any content displaying negative exponents or superscript minus signs.
HTML numeric references (&#8315; or &#x207B;) go directly in markup. The CSS escape \207B 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