Mathematical Fraktur Small N

๐”ซ

Shortcodes

Copy useful codes for mathematical fraktur small n symbol ๐”ซ to use in websites, apps, blogs, and docs.

Unicode
U+1D52B
HTML Code
𝔫
HEX Code
𝔫
CSS Code
\1D52B
JS/JSON
\u1D52B
Unix/C/PHP/JAVA
0x1D52B
URL-encode
%F0%9D%94%AB

Customize Mathematical Fraktur Small N

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

๐”ซ
  

How to use Mathematical Fraktur Small N Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐”ซ</span>
HTML Code:
<span>&#120107;</span>
HEX Code:
<span>&#x1D52B;</span>

Add with CSS

.mathematical-fraktur-small-n::before {
  content: '\\1D52B';
}

Set it in JavaScript

document.querySelector('.mathematical-fraktur-small-n').textContent = '๐”ซ';
copied