Latin Subscript Small Letter N

Shortcodes

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

Unicode
U+2099
HTML Code
ₙ
HEX Code
ₙ
CSS Code
\2099
JS/JSON
\u2099
Unix/C/PHP/JAVA
0x2099
URL-encode
%E2%82%99
copied

Customize Latin Subscript Small Letter N Symbol

Customize ₙ symbol as you like and download Latin Subscript 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 add Latin Subscript Small Letter N symbol in HTML, CSS, and JS?

Insert ₙ Latin Subscript Small Letter N using HTML

1. Copy-paste Latin Subscript Small Letter N directly:
<span>ₙ</span>
2. HTML Decimal Code:
<span>&#8345;</span>
3. Hexadecimal Code:
<span>&#x2099;</span>
Preview:

Add Latin Subscript Small Letter N symbol with CSS

.latin-subscript-small-letter-n::before {
    content: '\\2099';
}
Preview: Latin Subscript Small Letter N

Latin Subscript Small Letter N JavaScript Code

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