Mathematical Bold Small N

๐ง

Shortcodes

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

Unicode
U+1D427
HTML Code
𝐧
HEX Code
𝐧
CSS Code
\1D427
JS/JSON
\u1D427
Unix/C/PHP/JAVA
0x1D427
URL-encode
%F0%9D%90%A7

Customize Mathematical Bold Small N

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

๐ง
  

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

Insert in HTML

1. Direct symbol:
<span>๐ง</span>
HTML Code:
<span>&#119847;</span>
HEX Code:
<span>&#x1D427;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.mathematical-bold-small-n').textContent = '๐ง';
copied