Superscript Latin Small Letter N

Shortcodes

Copy useful codes for superscript latin small letter n symbol ⁿ to use in websites, apps, blogs, and docs.

Unicode
U+207F
Alt Code
252
HTML Code
ⁿ
HEX Code
ⁿ
CSS Code
\207F
JS/JSON
\u207F
Unix/C/PHP/JAVA
0x207F
URL-encode
%E2%81%BF

Customize Superscript Latin Small Letter N

Customize ⁿ, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Superscript Latin Small Letter N Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ⁿ</span>
HTML Code:
<span>&#8319;</span>
HEX Code:
<span>&#x207F;</span>

Add with CSS

.superscript-latin-small-letter-n::before {
  content: '\\207F';
}

Set it in JavaScript

document.querySelector('.superscript-latin-small-letter-n').textContent = 'ⁿ';
copied