Double-struck Capital N

Shortcodes

Copy useful codes for double-struck capital n symbol ℕ to use in websites, apps, blogs, and docs.

Unicode
U+2115
HTML Code
ℕ
HTML Entity
ℕ
HEX Code
ℕ
CSS Code
\2115
JS/JSON
\u2115
Unix/C/PHP/JAVA
0x2115
URL-encode
%E2%84%95

Customize Double-struck Capital N

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

  

How to use Double-struck Capital N Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ℕ</span>
HTML Code:
<span>&#8469;</span>
HTML Entity:
<span>&Nopf;</span>
HEX Code:
<span>&#x2115;</span>

Add with CSS

.double-struck-capital-n::before {
  content: '\\2115';
}

Set it in JavaScript

document.querySelector('.double-struck-capital-n').textContent = 'ℕ';
copied