Greek Capital Letter Mu

Μ

Shortcodes

Copy useful codes for greek capital letter mu symbol Μ to use in websites, apps, blogs, and docs.

Unicode
U+039C
HTML Code
Μ
HEX Code
Μ
CSS Code
\039C
JS/JSON
\u039C
Unix/C/PHP/JAVA
0x039C
URL-encode
%CE%9C

Customize Greek Capital Letter Mu

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

Μ
  

How to use Greek Capital Letter Mu Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Μ</span>
HTML Code:
<span>&#924;</span>
HEX Code:
<span>&#x39C;</span>

Add with CSS

.greek-capital-letter-mu::before {
  content: '\\039C';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-mu').textContent = 'Μ';
copied