Mathematical Bold Small B

๐›

Shortcodes

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

Unicode
U+1D41B
HTML Code
𝐛
HEX Code
𝐛
CSS Code
\1D41B
JS/JSON
\u1D41B
Unix/C/PHP/JAVA
0x1D41B
URL-encode
%F0%9D%90%9B

Customize Mathematical Bold Small B

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

๐›
  

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

Insert in HTML

1. Direct symbol:
<span>๐›</span>
HTML Code:
<span>&#119835;</span>
HEX Code:
<span>&#x1D41B;</span>

Add with CSS

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

Set it in JavaScript

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