Square Bq

Shortcodes

Copy useful codes for square bq symbol ㏃ to use in websites, apps, blogs, and docs.

Unicode
U+33C3
HTML Code
㏃
HEX Code
㏃
CSS Code
\33C3
JS/JSON
\u33C3
Unix/C/PHP/JAVA
0x33C3
URL-encode
%E3%8F%83

Customize Square Bq

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

  

How to use Square Bq Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>㏃</span>
HTML Code:
<span>&#13251;</span>
HEX Code:
<span>&#x33C3;</span>

Add with CSS

.square-bq::before {
  content: '\\33C3';
}

Set it in JavaScript

document.querySelector('.square-bq').textContent = '㏃';
copied