HTML Entity for Superscript Six (⁶)

What You'll Learn
How to display the superscript six (⁶) 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, sixth powers, and footnote markers.
⁶ has no named HTML entity (unlike ¹ ² ³), so you’ll use numeric references (⁶ or ⁶) or a CSS escape (\2076 in content).
⚡ Quick Reference — ⁶ Entity
U+2076Superscripts & Subscripts block
⁶Hexadecimal reference
⁶Decimal reference
\2076Use in CSS content
Name Value
──────────── ──────────
Unicode U+2076
Hex code ⁶
HTML code ⁶
Named entity (none)
CSS code \2076Complete HTML Example
This example demonstrates ⁶ using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2076";
}
</style>
</head>
<body>
<p>Superscript Six using Hexa Decimal: ⁶</p>
<p>Superscript Six using HTML Code: ⁶</p>
<p id="point">Superscript Six using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ⁶ (U+2076) is supported in all modern browsers. Rendering depends on font support for the Superscripts and Subscripts block, so include a sensible fallback font stack:
👀 Live Preview
See ⁶ rendered in a few practical contexts:
<sup>.🧠 How It Works
Hexadecimal Code
⁶ references Unicode 2076 in hexadecimal to produce the glyph ⁶ in HTML.
Decimal HTML Code
⁶ uses the decimal code point value 8310 to render the same character.
CSS Entity (Escape)
\2076 is used in CSS (often in content) to generate ⁶ in pseudo-elements like ::before and ::after.
Same visual result
All methods render ⁶. Unicode is U+2076 (Superscripts and Subscripts). There is no named HTML entity for this character.
Use Cases
The superscript six (⁶) commonly appears in the following scenarios:
Sixth powers like x⁶ and 2⁶ in math.
Superscript reference markers in articles and papers.
Powers and notation in physics and engineering.
Textbooks and tutorials explaining sixth powers.
Labels and captions requiring a compact exponent.
Use the glyph when you need a single superscript digit.
💡 Best Practices
Do
- Use numeric references (
⁶/⁶) 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
&sup6;(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 “6” is intended
Key Takeaways
Use numeric references in HTML
⁶ ⁶For CSS, use the escape in the content property
\2076Unicode U+2076 is in Superscripts/Subscripts
Commonly used for exponents like x⁶
There is no named HTML entity for ⁶
❓ Frequently Asked Questions
⁶ (hex) or ⁶ (decimal) in HTML. In CSS, use \2076 in the content property. All render ⁶.U+2076 (hex 2076, decimal 8310). It’s part of the Superscripts and Subscripts Unicode block.⁶ or ⁶) are used directly in markup. The CSS escape \2076 is used in stylesheets (often in content on pseudo-elements). Same glyph, different layer.⁶ or ⁶.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
