Square M Over S

Shortcodes

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

Unicode
U+33A7
HTML Code
㎧
HEX Code
㎧
CSS Code
\33A7
JS/JSON
\u33A7
Unix/C/PHP/JAVA
0x33A7
URL-encode
%E3%8E%A7

Customize Square M Over S

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎧</span>
HTML Code:
<span>&#13223;</span>
HEX Code:
<span>&#x33A7;</span>

Add with CSS

.square-m-over-s::before {
  content: '\\33A7';
}

Set it in JavaScript

document.querySelector('.square-m-over-s').textContent = '㎧';
copied