Mathematical Double-struck Small N

๐•Ÿ

Shortcodes

Copy useful codes for mathematical double-struck small n symbol ๐•Ÿ to use in websites, apps, blogs, and docs.

Unicode
U+1D55F
HTML Code
𝕟
HEX Code
𝕟
CSS Code
\1D55F
JS/JSON
\u1D55F
Unix/C/PHP/JAVA
0x1D55F
URL-encode
%F0%9D%95%9F

Customize Mathematical Double-struck Small N

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

๐•Ÿ
  

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

Insert in HTML

1. Direct symbol:
<span>๐•Ÿ</span>
HTML Code:
<span>&#120159;</span>
HEX Code:
<span>&#x1D55F;</span>

Add with CSS

.mathematical-double-struck-small-n::before {
  content: '\\1D55F';
}

Set it in JavaScript

document.querySelector('.mathematical-double-struck-small-n').textContent = '๐•Ÿ';
copied