Latin Small Letter B

b

Shortcodes

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

Unicode
U+0062
Alt Code
98
HTML Code
b
HEX Code
b
CSS Code
\0062
JS/JSON
\u0062
Unix/C/PHP/JAVA
0x62
URL-encode
b

Customize Latin Small Letter B

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

b
  

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

Insert in HTML

1. Direct symbol:
<span>b</span>
HTML Code:
<span>&#98;</span>
HEX Code:
<span>&#x0062;</span>

Add with CSS

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

Set it in JavaScript

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