Mathematical Bold Script Small B

๐“ซ

Shortcodes

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

Unicode
U+1D4EB
HTML Code
𝓫
HEX Code
𝓫
CSS Code
\1D4EB
JS/JSON
\u1D4EB
Unix/C/PHP/JAVA
0x1D4EB
URL-encode
%F0%9D%93%AB

Customize Mathematical Bold Script Small B

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

๐“ซ
  

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

Insert in HTML

1. Direct symbol:
<span>๐“ซ</span>
HTML Code:
<span>&#120043;</span>
HEX Code:
<span>&#x1D4EB;</span>

Add with CSS

.mathematical-bold-script-small-b::before {
  content: '\\1D4EB';
}

Set it in JavaScript

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