Upside Down M

Unicode Name: LATIN EPIGRAPHIC LETTER INVERTED M

Shortcodes

Copy useful codes for upside down m symbol ꟽ to use in websites, apps, blogs, and docs.

Unicode
U+A7FD
HTML Code
ꟽ
HEX Code
ꟽ
CSS Code
\A7FD
JS/JSON
\uA7FD
Unix/C/PHP/JAVA
0xA7FD
URL-encode
%EA%9F%BD

Customize Upside Down M

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

  

How to use Upside Down M Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ꟽ</span>
HTML Code:
<span>&#43005;</span>
HEX Code:
<span>&#xA7FD;</span>

Add with CSS

.upside-down-m::before {
  content: '\\A7FD';
}

Set it in JavaScript

document.querySelector('.upside-down-m').textContent = 'ꟽ';
copied