HTML Entity for Superscript Nine (⁹)

Beginner
⏱️ 5 min read
📚 Updated: Aug 2025
🎯 1 Code Example
Unicode U+2079

What You'll Learn

How to display the superscript nine (⁹) in HTML using hex, decimal, and CSS entity methods. This character lives in the Superscripts and Subscripts Unicode block and is commonly used for exponents, ninth powers, scientific notation, and footnote markers.

⁹ has no named HTML entity (unlike ¹ ² ³), so you’ll use numeric references (⁹ or ⁹) or a CSS escape (\2079 in content).

⚡ Quick Reference — ⁹ Entity

Unicode U+2079

Superscripts & Subscripts block

Hex Code ⁹

Hexadecimal reference

HTML Code ⁹

Decimal reference

CSS Code \2079

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2079
Hex code       ⁹
HTML code      ⁹
Named entity   (none)
CSS code       \2079
1

Complete HTML Example

This example demonstrates ⁹ using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2079";
  }
 </style>
</head>
<body>

<p>Superscript Nine using Hexa Decimal: &#x2079;</p>
<p>Superscript Nine using HTML Code: &#8313;</p>
<p id="point">Superscript Nine using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

The character ⁹ (U+2079) is supported in all modern browsers. Rendering depends on font support for the Superscripts and Subscripts block, so include a sensible fallback font stack:

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

👀 Live Preview

See ⁹ rendered in a few practical contexts:

Exponent x⁹
Ninth power 2⁹ = 512
Large glyph
Semantic note For multi-character superscripts, prefer <sup>.

🧠 How It Works

1

Hexadecimal Code

&#x2079; references Unicode 2079 in hexadecimal to produce the glyph in HTML.

HTML markup
2

Decimal HTML Code

&#8313; uses the decimal code point value 8313 to render the same character.

HTML markup
3

CSS Entity (Escape)

\2079 is used in CSS (often in content) to generate ⁹ in pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods render . Unicode is U+2079 (Superscripts and Subscripts). There is no named HTML entity for this character.

Use Cases

The superscript nine (⁹) commonly appears in the following scenarios:

📐 Exponents

Ninth powers like x⁹ and 2⁹ in math.

📝 Footnotes

Superscript reference markers in articles and papers.

🧪 Science

Powers and notation in physics and engineering.

📚 Education

Textbooks and tutorials explaining ninth powers.

📈 Charts

Labels and captions requiring a compact exponent.

🎨 Typography

Use the glyph when you need a single superscript digit.

💡 Best Practices

Do

  • Use numeric references (&#x2079; / &#8313;) for portability
  • Use <sup> for multi-character superscripts
  • Keep exponent formatting consistent across content
  • Add context for assistive tech when needed
  • Use CSS escapes for generated content

Don’t

  • Expect a named entity like &sup9; (it doesn’t exist)
  • Mix Unicode superscripts with random <sup> usage without reason
  • Use the CSS escape inside HTML content
  • Let line-height collapse around formulas (adjust if needed)
  • Use ⁹ where a normal “9” is intended

Key Takeaways

1

Use numeric references in HTML

&#x2079; &#8313;
2

For CSS, use the escape in the content property

\2079
3

Unicode U+2079 is in Superscripts/Subscripts

4

Commonly used for exponents like x⁹

5

There is no named HTML entity for ⁹

❓ Frequently Asked Questions

Use &#x2079; (hex) or &#8313; (decimal) in HTML. In CSS, use \2079 in the content property. All render ⁹.
U+2079 (hex 2079, decimal 8313). It’s part of the Superscripts and Subscripts Unicode block.
Use it for exponents (x⁹), ninth powers, mathematical formulas, footnote markers, and ordinal-style notation.
HTML numeric references (&#8313; or &#x2079;) are used directly in markup. The CSS escape \2079 is used in stylesheets (often in content on pseudo-elements). Same glyph, different layer.
Named entities exist only for ¹ ² ³. For ⁹ you must use numeric Unicode codes like &#x2079; or &#8313;.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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