Latin Letter Small Capital B

ʙ

Shortcodes

Copy useful codes for latin letter small capital b symbol ʙ to use in websites, apps, blogs, and docs.

Unicode
U+0299
HTML Code
ʙ
HEX Code
ʙ
CSS Code
\0299
JS/JSON
\u0299
Unix/C/PHP/JAVA
0x299
URL-encode
%CA%99

Customize Latin Letter Small Capital B

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

ʙ
  

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

Insert in HTML

1. Direct symbol:
<span>ʙ</span>
HTML Code:
<span>&#665;</span>
HEX Code:
<span>&#x0299;</span>

Add with CSS

.latin-letter-small-capital-b::before {
  content: '\\0299';
}

Set it in JavaScript

document.querySelector('.latin-letter-small-capital-b').textContent = 'ʙ';
copied