Latin Letter Small Capital M

Shortcodes

Copy useful codes for latin letter small capital m symbol ᴍ to use in websites, apps, blogs, and docs.

Unicode
U+1D0D
HTML Code
ᴍ
HEX Code
ᴍ
CSS Code
\1D0D
JS/JSON
\u1D0D
Unix/C/PHP/JAVA
0x1D0D
URL-encode
%E1%B4%8D

Customize Latin Letter Small Capital M

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᴍ</span>
HTML Code:
<span>&#7437;</span>
HEX Code:
<span>&#x1D0D;</span>

Add with CSS

.latin-letter-small-capital-m::before {
  content: '\\1D0D';
}

Set it in JavaScript

document.querySelector('.latin-letter-small-capital-m').textContent = 'ᴍ';
copied