Fullwidth Latin Small Letter B

Shortcodes

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

Unicode
U+FF42
HTML Code
b
HEX Code
b
CSS Code
\FF42
JS/JSON
\uFF42
Unix/C/PHP/JAVA
0xFF42
URL-encode
%EF%BD%82

Customize Fullwidth Latin Small Letter B

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

  

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

Insert in HTML

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

Add with CSS

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

Set it in JavaScript

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