HTML Entity for Superscript Latin Small Letter N (ⁿ)

What You'll Learn
How to display the Superscript Latin Small Letter N symbol (ⁿ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+207F (SUPERSCRIPT LATIN SMALL LETTER N) in the Superscripts and Subscripts block (U+2070–U+209F)—commonly used for exponents like mⁿ or scientific notation.
Render it with ⁿ, ⁿ, or CSS escape \207F. There is no named HTML entity. Do not confuse ⁿ with <sup>n</sup> (styled markup) or regular lowercase n in body text.
⚡ Quick Reference — Superscript Latin Small Letter N
U+207FSuperscripts and Subscripts
ⁿHexadecimal reference
ⁿDecimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+207F
Hex code ⁿ
HTML code ⁿ
Named entity (none)
CSS code \207F
Block Superscripts and Subscripts (U+2070–U+209F)
Example mⁿ (m to the power n)Complete HTML Example
This example demonstrates the Superscript Latin Small Letter N symbol (ⁿ) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\207F";
}
</style>
</head>
<body>
<p>Using Hexadecimal: ⁿ</p>
<p>Using HTML Code: ⁿ</p>
<p>Exponent form: mⁿ</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Superscript Latin Small Letter N entity is universally supported in all modern browsers:
👀 Live Preview
See the Superscript Latin Small Letter N symbol (ⁿ) rendered in different contexts:
🧠 How It Works
Hexadecimal Code
ⁿ uses the Unicode hexadecimal value 207F to display the symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
ⁿ uses the decimal Unicode value 8319 to display the same character. This is one of the most commonly used methods.
CSS Entity
\207F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ⁿ. Unicode U+207F in the Superscripts and Subscripts block (U+2070–U+209F). No named entity.
Use Cases
The Superscript Latin Small Letter N symbol (ⁿ) commonly appears in:
Exponents like mⁿ and polynomial notation.
Molecular notation and scientific documentation.
Research papers and scholarly articles.
Technical documentation and math web apps.
Footnotes, citations, and editorial design.
Online courses and science tutorials.
Bibliographies and reference materials.
💡 Best Practices
Do
- Use
ⁿorⁿfor the dedicated superscript n glyph - Pick one style (hex or decimal) per project for consistency
- Add
aria-labelfor standalone symbols in math content - Test rendering across browsers and fonts
- Use in expressions like mⁿ for compact exponent notation
Don’t
- Confuse ⁿ with plain n or
<sup>n</sup>when a single glyph is needed - Put CSS escape
\207Fdirectly in HTML text nodes - Expect a named HTML entity for U+207F—use numeric references
- Use HTML entities in JS (use
\u207Finstead) - Assume all fonts render ⁿ clearly at small sizes
Key Takeaways
Two HTML references both render ⁿ
ⁿ ⁿFor CSS stylesheets, use the escape in the content property
\207FUnicode U+207F — SUPERSCRIPT LATIN SMALL LETTER N
No named entity—use numeric references or CSS escape
Common pattern: mⁿ for “m to the power n”
❓ Frequently Asked Questions
ⁿ (hex), ⁿ (decimal), or \207F in CSS content. There is no named HTML entity. All three produce ⁿ.U+207F (SUPERSCRIPT LATIN SMALL LETTER N). Superscripts and Subscripts block (U+2070–U+209F). Hex 207F, decimal 8319.ⁿ or ⁿ) go directly in markup. The CSS escape \207F is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — superscripts, subscripts, math, and more.
8 people found this page helpful
