Square Ma

Shortcodes

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

Unicode
U+3383
HTML Code
㎃
HEX Code
㎃
CSS Code
\3383
JS/JSON
\u3383
Unix/C/PHP/JAVA
0x3383
URL-encode
%E3%8E%83

Customize Square Ma

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎃</span>
HTML Code:
<span>&#13187;</span>
HEX Code:
<span>&#x3383;</span>

Add with CSS

.square-ma::before {
  content: '\\3383';
}

Set it in JavaScript

document.querySelector('.square-ma').textContent = '㎃';
copied