Square Pa

Shortcodes

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

Unicode
U+33A9
HTML Code
㎩
HEX Code
㎩
CSS Code
\33A9
JS/JSON
\u33A9
Unix/C/PHP/JAVA
0x33A9
URL-encode
%E3%8E%A9

Customize Square Pa

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎩</span>
HTML Code:
<span>&#13225;</span>
HEX Code:
<span>&#x33A9;</span>

Add with CSS

.square-pa::before {
  content: '\\33A9';
}

Set it in JavaScript

document.querySelector('.square-pa').textContent = '㎩';
copied