HTML Entity for Lowercase M Reverse Large (Ɯ)

What You'll Learn
How to display the turned M or m reverse large (Ɯ) in HTML using hexadecimal, decimal, and CSS escape methods. Despite the entity page naming convention, this character is officially LATIN CAPITAL LETTER TURNED M (U+019C)—the capital form of the turned m (ɯ, U+026F). It appears in phonetic notation and some orthographies. The character is in the Latin Extended-B block.
Render it with Ɯ, Ɯ, or CSS escape \19C. There is no named HTML entity for this character. In UTF-8 documents you can also type Ɯ directly.
⚡ Quick Reference — Lowercase M Reverse Large Entity
U+019CLatin Extended-B
ƜHexadecimal reference
ƜDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+019C
Hex code Ɯ
HTML code Ɯ
Named entity (none)
CSS code \19C
Meaning Latin capital letter turned M
Related U+026F = ɯ (lowercase turned m)
Related U+004D = M (plain uppercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the m reverse large (Ɯ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\19C";
}
</style>
</head>
<body>
<p>Symbol (hex): Ɯ</p>
<p>Symbol (decimal): Ɯ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The m reverse large (Ɯ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the turned M (Ɯ) in phonetic and notation contexts:
M (U+004D) or ɯ (lowercase turned m)🧠 How It Works
Hexadecimal Code
Ɯ uses the Unicode hexadecimal value 019C to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ɯ uses the decimal Unicode value 412 to display the same character. Works in all HTML contexts.
CSS Entity
\19C is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: Ɯ. Unicode U+019C sits in Latin Extended-B. Do not confuse with plain M (U+004D) or ɯ (lowercase turned m). Use fonts with Latin Extended-B support for reliable rendering.
Use Cases
The m reverse large (Ɯ) is commonly used in:
Extended phonetic transcription systems using the turned M (capital form of ɯ).
Academic papers using Latin Extended-B characters for phonetic or orthographic notation.
Pronunciation keys and language reference materials using the turned M symbol.
Writing systems or orthographies that use Ɯ as a distinct letter or symbol.
Fonts and typographic systems supporting Latin Extended-B for linguistic use.
Using U+019C ensures screen readers interpret Ɯ correctly in phonetic content.
When generating markup, using Ɯ or Ɯ ensures correct output.
💡 Best Practices
Do
- Use U+019C (Ɯ) for the capital turned M; use U+026F (ɯ) for the lowercase IPA turned m
- Serve pages as UTF-8; you can also type Ɯ directly in UTF-8 source
- Choose fonts that support Latin Extended-B for reliable rendering
- Use the precomposed character U+019C rather than rotation hacks
- Pick one entity style (hex or decimal) per project for consistency
Don’t
- Substitute plain
Mwhen Ɯ is required for correct notation - Confuse Ɯ (capital turned M) with ɯ (lowercase turned m)
- Expect a named HTML entity—none exists for this character
- Put CSS escape
\19Cin HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
Key Takeaways
Three references render Ɯ; no named entity exists
Ɯ ƜFor CSS stylesheets, use the escape in the content property
\19CUnicode U+019C — LATIN CAPITAL LETTER TURNED M
Capital counterpart of turned m ɯ in phonetic and linguistic notation
Previous: Lowercase M Reverse (ɯ) Next: Lowercase M Reverse Long Leg
❓ Frequently Asked Questions
Ɯ (hex), Ɯ (decimal), or \19C in CSS content. There is no named HTML entity for Ɯ. In UTF-8 you can also type the character directly.U+019C (LATIN CAPITAL LETTER TURNED M). Latin Extended-B block. Hex 019C, decimal 412. It is the capital form of the turned m (ɯ, U+026F).Ɯ or Ɯ, or the CSS entity \19C. In UTF-8 pages you can type Ɯ directly.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
