Modifier Letter Small B

Shortcodes

Copy useful codes for modifier letter small b symbol ᵇ to use in websites, apps, blogs, and docs.

Unicode
U+1D47
HTML Code
ᵇ
HEX Code
ᵇ
CSS Code
\1D47
JS/JSON
\u1D47
Unix/C/PHP/JAVA
0x1D47
URL-encode
%E1%B5%87

Customize Modifier Letter Small B

Customize ᵇ, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Modifier Letter Small B Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ᵇ</span>
HTML Code:
<span>&#7495;</span>
HEX Code:
<span>&#x1D47;</span>

Add with CSS

.modifier-letter-small-b::before {
  content: '\\1D47';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-b').textContent = 'ᵇ';
copied