Mathematical Bold Script Capital M

๐“œ

Shortcodes

Copy useful codes for mathematical bold script capital m symbol ๐“œ to use in websites, apps, blogs, and docs.

Unicode
U+1D4DC
HTML Code
𝓜
HEX Code
𝓜
CSS Code
\1D4DC
JS/JSON
\u1D4DC
Unix/C/PHP/JAVA
0x1D4DC
URL-encode
%F0%9D%93%9C

Customize Mathematical Bold Script Capital M

Customize ๐“œ, download it as SVG or PNG, or copy the generated HTML snippet.

๐“œ
  

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

Insert in HTML

1. Direct symbol:
<span>๐“œ</span>
HTML Code:
<span>&#120028;</span>
HEX Code:
<span>&#x1D4DC;</span>

Add with CSS

.mathematical-bold-script-capital-m::before {
  content: '\\1D4DC';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-script-capital-m').textContent = '๐“œ';
copied