Square Wb

Shortcodes

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

Unicode
U+33DD
HTML Code
㏝
HEX Code
㏝
CSS Code
\33DD
JS/JSON
\u33DD
Unix/C/PHP/JAVA
0x33DD
URL-encode
%E3%8F%9D

Customize Square Wb

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

  

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

Insert in HTML

1. Direct symbol:
<span>㏝</span>
HTML Code:
<span>&#13277;</span>
HEX Code:
<span>&#x33DD;</span>

Add with CSS

.square-wb::before {
  content: '\\33DD';
}

Set it in JavaScript

document.querySelector('.square-wb').textContent = '㏝';
copied