Mathematical Bold Script Small N

๐“ท

Shortcodes

Copy useful codes for mathematical bold script small n symbol ๐“ท to use in websites, apps, blogs, and docs.

Unicode
U+1D4F7
HTML Code
𝓷
HEX Code
𝓷
CSS Code
\1D4F7
JS/JSON
\u1D4F7
Unix/C/PHP/JAVA
0x1D4F7
URL-encode
%F0%9D%93%B7

Customize Mathematical Bold Script Small N

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

๐“ท
  

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

Insert in HTML

1. Direct symbol:
<span>๐“ท</span>
HTML Code:
<span>&#120055;</span>
HEX Code:
<span>&#x1D4F7;</span>

Add with CSS

.mathematical-bold-script-small-n::before {
  content: '\\1D4F7';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-script-small-n').textContent = '๐“ท';
copied