Square Mm Cubed

Shortcodes

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

Unicode
U+33A3
HTML Code
㎣
HEX Code
㎣
CSS Code
\33A3
JS/JSON
\u33A3
Unix/C/PHP/JAVA
0x33A3
URL-encode
%E3%8E%A3

Customize Square Mm Cubed

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎣</span>
HTML Code:
<span>&#13219;</span>
HEX Code:
<span>&#x33A3;</span>

Add with CSS

.square-mm-cubed::before {
  content: '\\33A3';
}

Set it in JavaScript

document.querySelector('.square-mm-cubed').textContent = '㎣';
copied