Bopomofo Letter M

Shortcodes

Copy useful codes for bopomofo letter m symbol ㄇ to use in websites, apps, blogs, and docs.

Unicode
U+3107
HTML Code
ㄇ
HEX Code
ㄇ
CSS Code
\3107
JS/JSON
\u3107
Unix/C/PHP/JAVA
0x3107
URL-encode
%E3%84%87

Customize Bopomofo Letter M

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

  

How to use Bopomofo Letter M Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ㄇ</span>
HTML Code:
<span>&#12551;</span>
HEX Code:
<span>&#x3107;</span>

Add with CSS

.bopomofo-letter-m::before {
  content: '\\3107';
}

Set it in JavaScript

document.querySelector('.bopomofo-letter-m').textContent = 'ㄇ';
copied