Square M Cubed

Shortcodes

Copy useful codes for square m cubed symbol ㎥ to use in websites, apps, blogs, and docs.

Unicode
U+33A5
HTML Code
㎥
HEX Code
㎥
CSS Code
\33A5
JS/JSON
\u33A5
Unix/C/PHP/JAVA
0x33A5
URL-encode
%E3%8E%A5

Customize Square M Cubed

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎥</span>
HTML Code:
<span>&#13221;</span>
HEX Code:
<span>&#x33A5;</span>

Add with CSS

.square-m-cubed::before {
  content: '\\33A5';
}

Set it in JavaScript

document.querySelector('.square-m-cubed').textContent = '㎥';
copied