Superscript Latin Small Letter N

Shortcodes

Copy and paste codes for Superscript Latin Small Letter N symbol ⁿ to use in your websites, apps, blogs, and more.

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
copied

Customize Superscript Latin Small Letter N Symbol

Customize ⁿ symbol as you like and download Superscript Latin Small Letter N as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to type Superscript Latin Small Letter N symbol ⁿ ?

Using Superscript Latin Small Letter N Alt Code:

You can type the Superscript Latin Small Letter N symbol ⁿ using your keyboard by using the Alt Code for Superscript Latin Small Letter N. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 252 using the Numpad.
  3. Release the Alt key.

This will make the ⁿ appear on your screen.

How to add Superscript Latin Small Letter N symbol in HTML, CSS, and JS?

Insert ⁿ Superscript Latin Small Letter N using HTML

1. Copy-paste Superscript Latin Small Letter N directly:
<span>ⁿ</span>
2. HTML Decimal Code:
<span>&#8319;</span>
3. Hexadecimal Code:
<span>&#x207F;</span>
Preview:

Add Superscript Latin Small Letter N symbol with CSS

.superscript-latin-small-letter-n::before {
    content: '\\207F';
}
Preview: Superscript Latin Small Letter N

Superscript Latin Small Letter N JavaScript Code

1. Direct Symbol:
document.querySelector('.superscript-latin-small-letter-n').textContent = 'ⁿ';
2. Unicode Escape for ⁿ:
document.querySelector('.superscript-latin-small-letter-n').textContent = '\u207F';
Preview: