Mathematical Script Small B

๐’ท

Shortcodes

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

Unicode
U+1D4B7
HTML Code
𝒷
HEX Code
𝒷
CSS Code
\1D4B7
JS/JSON
\u1D4B7
Unix/C/PHP/JAVA
0x1D4B7
URL-encode
%F0%9D%92%B7

Customize Mathematical Script Small B

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

๐’ท
  

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

Insert in HTML

1. Direct symbol:
<span>๐’ท</span>
HTML Code:
<span>&#119991;</span>
HEX Code:
<span>&#x1D4B7;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.mathematical-script-small-b').textContent = '๐’ท';
copied