Double-struck Capital N

Shortcodes

Copy and paste codes for Double-struck Capital N symbol ℕ to use in your websites, apps, blogs, and more.

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
copied

Customize Double-struck Capital N Symbol

Customize ℕ symbol as you like and download Double-struck Capital 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 Double-struck Capital N symbol in HTML, CSS, and JS?

Insert ℕ Double-struck Capital N using HTML

1. Copy-paste Double-struck Capital N directly:
<span>ℕ</span>
2. HTML Decimal Code:
<span>&#8469;</span>
3. HTML Entity:
<span>&Nopf;</span>
4. Hexadecimal Code:
<span>&#x2115;</span>
Preview:

Add Double-struck Capital N symbol with CSS

.double-struck-capital-n::before {
    content: '\\2115';
}
Preview: Double-struck Capital N

Double-struck Capital N JavaScript Code

1. Direct Symbol:
document.querySelector('.double-struck-capital-n').textContent = 'ℕ';
2. Unicode Escape for ℕ:
document.querySelector('.double-struck-capital-n').textContent = '\u2115';
Preview: