Square Mu M

Shortcodes

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

Unicode
U+339B
HTML Code
㎛
HEX Code
㎛
CSS Code
\339B
JS/JSON
\u339B
Unix/C/PHP/JAVA
0x339B
URL-encode
%E3%8E%9B

Customize Square Mu M

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎛</span>
HTML Code:
<span>&#13211;</span>
HEX Code:
<span>&#x339B;</span>

Add with CSS

.square-mu-m::before {
  content: '\\339B';
}

Set it in JavaScript

document.querySelector('.square-mu-m').textContent = '㎛';
copied