Square Mv

Shortcodes

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

Unicode
U+33B7
HTML Code
㎷
HEX Code
㎷
CSS Code
\33B7
JS/JSON
\u33B7
Unix/C/PHP/JAVA
0x33B7
URL-encode
%E3%8E%B7

Customize Square Mv

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎷</span>
HTML Code:
<span>&#13239;</span>
HEX Code:
<span>&#x33B7;</span>

Add with CSS

.square-mv::before {
  content: '\\33B7';
}

Set it in JavaScript

document.querySelector('.square-mv').textContent = '㎷';
copied