Latin Subscript Small Letter M

Shortcodes

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

Unicode
U+2098
HTML Code
ₘ
HEX Code
ₘ
CSS Code
\2098
JS/JSON
\u2098
Unix/C/PHP/JAVA
0x2098
URL-encode
%E2%82%98

Customize Latin Subscript Small Letter M

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

  

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

Insert in HTML

1. Direct symbol:
<span>ₘ</span>
HTML Code:
<span>&#8344;</span>
HEX Code:
<span>&#x2098;</span>

Add with CSS

.latin-subscript-small-letter-m::before {
  content: '\\2098';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-m').textContent = 'ₘ';
copied