Square V Over M

Shortcodes

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

Unicode
U+33DE
HTML Code
㏞
HEX Code
㏞
CSS Code
\33DE
JS/JSON
\u33DE
Unix/C/PHP/JAVA
0x33DE
URL-encode
%E3%8F%9E

Customize Square V Over M

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

  

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

Insert in HTML

1. Direct symbol:
<span>㏞</span>
HTML Code:
<span>&#13278;</span>
HEX Code:
<span>&#x33DE;</span>

Add with CSS

.square-v-over-m::before {
  content: '\\33DE';
}

Set it in JavaScript

document.querySelector('.square-v-over-m').textContent = '㏞';
copied