Mathematical Bold Small M

๐ฆ

Shortcodes

Copy useful codes for mathematical bold small m symbol ๐ฆ to use in websites, apps, blogs, and docs.

Unicode
U+1D426
HTML Code
𝐦
HEX Code
𝐦
CSS Code
\1D426
JS/JSON
\u1D426
Unix/C/PHP/JAVA
0x1D426
URL-encode
%F0%9D%90%A6

Customize Mathematical Bold Small M

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

๐ฆ
  

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

Insert in HTML

1. Direct symbol:
<span>๐ฆ</span>
HTML Code:
<span>&#119846;</span>
HEX Code:
<span>&#x1D426;</span>

Add with CSS

.mathematical-bold-small-m::before {
  content: '\\1D426';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-small-m').textContent = '๐ฆ';
copied