Fullwidth Latin Capital Letter B

Shortcodes

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

Unicode
U+FF22
HTML Code
B
HEX Code
B
CSS Code
\FF22
JS/JSON
\uFF22
Unix/C/PHP/JAVA
0xFF22
URL-encode
%EF%BC%A2

Customize Fullwidth Latin Capital Letter B

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

  

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

Insert in HTML

1. Direct symbol:
<span>B</span>
HTML Code:
<span>&#65314;</span>
HEX Code:
<span>&#xFF22;</span>

Add with CSS

.fullwidth-latin-capital-letter-b::before {
  content: '\\FF22';
}

Set it in JavaScript

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