Mathematical Script Capital N

๐’ฉ

Shortcodes

Copy useful codes for mathematical script capital n symbol ๐’ฉ to use in websites, apps, blogs, and docs.

Unicode
U+1D4A9
HTML Code
𝒩
HEX Code
𝒩
CSS Code
\1D4A9
JS/JSON
\u1D4A9
Unix/C/PHP/JAVA
0x1D4A9
URL-encode
%F0%9D%92%A9

Customize Mathematical Script Capital N

Customize ๐’ฉ, download it as SVG or PNG, or copy the generated HTML snippet.

๐’ฉ
  

How to use Mathematical Script Capital N Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐’ฉ</span>
HTML Code:
<span>&#119977;</span>
HEX Code:
<span>&#x1D4A9;</span>

Add with CSS

.mathematical-script-capital-n::before {
  content: '\\1D4A9';
}

Set it in JavaScript

document.querySelector('.mathematical-script-capital-n').textContent = '๐’ฉ';
copied