Square Pw

Shortcodes

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

Unicode
U+33BA
HTML Code
㎺
HEX Code
㎺
CSS Code
\33BA
JS/JSON
\u33BA
Unix/C/PHP/JAVA
0x33BA
URL-encode
%E3%8E%BA

Customize Square Pw

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎺</span>
HTML Code:
<span>&#13242;</span>
HEX Code:
<span>&#x33BA;</span>

Add with CSS

.square-pw::before {
  content: '\\33BA';
}

Set it in JavaScript

document.querySelector('.square-pw').textContent = '㎺';
copied