Latin Subscript Small Letter N

Shortcodes

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

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

Customize Latin Subscript Small Letter N

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

  

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

Insert in HTML

1. Direct symbol:
<span>ₙ</span>
HTML Code:
<span>&#8345;</span>
HEX Code:
<span>&#x2099;</span>

Add with CSS

.latin-subscript-small-letter-n::before {
  content: '\\2099';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-n').textContent = 'ₙ';
copied