Square Mm Squared

Shortcodes

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

Unicode
U+339F
HTML Code
㎟
HEX Code
㎟
CSS Code
\339F
JS/JSON
\u339F
Unix/C/PHP/JAVA
0x339F
URL-encode
%E3%8E%9F

Customize Square Mm Squared

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎟</span>
HTML Code:
<span>&#13215;</span>
HEX Code:
<span>&#x339F;</span>

Add with CSS

.square-mm-squared::before {
  content: '\\339F';
}

Set it in JavaScript

document.querySelector('.square-mm-squared').textContent = '㎟';
copied