Script Capital M

Shortcodes

Copy useful codes for script capital m symbol ℳ to use in websites, apps, blogs, and docs.

Unicode
U+2133
HTML Code
ℳ
HEX Code
ℳ
CSS Code
\2133
JS/JSON
\u2133
Unix/C/PHP/JAVA
0x2133
URL-encode
%E2%84%B3

Customize Script Capital M

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

  

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

Insert in HTML

1. Direct symbol:
<span>ℳ</span>
HTML Code:
<span>&#8499;</span>
HEX Code:
<span>&#x2133;</span>

Add with CSS

.script-capital-m::before {
  content: '\\2133';
}

Set it in JavaScript

document.querySelector('.script-capital-m').textContent = 'ℳ';
copied