Modifier Letter Capital M

Shortcodes

Copy useful codes for modifier letter capital m symbol ᴹ to use in websites, apps, blogs, and docs.

Unicode
U+1D39
HTML Code
ᴹ
HEX Code
ᴹ
CSS Code
\1D39
JS/JSON
\u1D39
Unix/C/PHP/JAVA
0x1D39
URL-encode
%E1%B4%B9

Customize Modifier Letter Capital M

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

  

How to use Modifier Letter Capital M Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ᴹ</span>
HTML Code:
<span>&#7481;</span>
HEX Code:
<span>&#x1D39;</span>

Add with CSS

.modifier-letter-capital-m::before {
  content: '\\1D39';
}

Set it in JavaScript

document.querySelector('.modifier-letter-capital-m').textContent = 'ᴹ';
copied