Square A Over M

Shortcodes

Copy useful codes for square a over m symbol ㏟ to use in websites, apps, blogs, and docs.

Unicode
U+33DF
HTML Code
㏟
HEX Code
㏟
CSS Code
\33DF
JS/JSON
\u33DF
Unix/C/PHP/JAVA
0x33DF
URL-encode
%E3%8F%9F

Customize Square A Over M

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

  

How to use Square A Over M Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>㏟</span>
HTML Code:
<span>&#13279;</span>
HEX Code:
<span>&#x33DF;</span>

Add with CSS

.square-a-over-m::before {
  content: '\\33DF';
}

Set it in JavaScript

document.querySelector('.square-a-over-m').textContent = '㏟';
copied