Square Mw

Shortcodes

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

Unicode
U+33BD
HTML Code
㎽
HEX Code
㎽
CSS Code
\33BD
JS/JSON
\u33BD
Unix/C/PHP/JAVA
0x33BD
URL-encode
%E3%8E%BD

Customize Square Mw

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎽</span>
HTML Code:
<span>&#13245;</span>
HEX Code:
<span>&#x33BD;</span>

Add with CSS

.square-mw::before {
  content: '\\33BD';
}

Set it in JavaScript

document.querySelector('.square-mw').textContent = '㎽';
copied