Mathematical Monospace Small M

๐š–

Shortcodes

Copy useful codes for mathematical monospace small m symbol ๐š– to use in websites, apps, blogs, and docs.

Unicode
U+1D696
HTML Code
𝚖
HEX Code
𝚖
CSS Code
\1D696
JS/JSON
\u1D696
Unix/C/PHP/JAVA
0x1D696
URL-encode
%F0%9D%9A%96

Customize Mathematical Monospace Small M

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

๐š–
  

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

Insert in HTML

1. Direct symbol:
<span>๐š–</span>
HTML Code:
<span>&#120470;</span>
HEX Code:
<span>&#x1D696;</span>

Add with CSS

.mathematical-monospace-small-m::before {
  content: '\\1D696';
}

Set it in JavaScript

document.querySelector('.mathematical-monospace-small-m').textContent = '๐š–';
copied