HTML Entity for Lowercase M Reverse (ɯ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+026F

What You'll Learn

How to display the lowercase m reverse or turned m (ɯ) in HTML using hexadecimal, decimal, and CSS escape methods. This is the IPA symbol for the close back unrounded vowel—a vowel produced with the back of the tongue raised (like “u”) but with the lips unrounded. The character is U+026F in the IPA Extensions block and appears in Turkish, Japanese, Korean, and other languages.

Render it with ɯ, ɯ, or CSS escape \26F. There is no named HTML entity for this character, so numeric codes or CSS must be used. In UTF-8 documents you can also type ɯ directly.

⚡ Quick Reference — Lowercase M Reverse Entity

Unicode U+026F

IPA Extensions

Hex Code ɯ

Hexadecimal reference

HTML Code ɯ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+026F
Hex code       ɯ
HTML code      ɯ
Named entity   (none)
CSS code       \26F
Meaning        Latin small letter turned m
IPA            Close back unrounded vowel
Related        U+006D = m (plain lowercase)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase m reverse (ɯ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\26F";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x026F;</p>
<p>Symbol (decimal): &#623;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase m reverse (ɯ) is supported in modern browsers when the font includes IPA Extensions glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the lowercase m reverse (ɯ) in IPA and language contexts:

Large glyphɯ
IPAClose back unrounded vowel
LanguagesTurkish (ı/ɯ), Japanese, Korean, and others
Not the same asplain m (U+006D), ɱ (m hook), or ͫ (combining m)
Numeric refs&#x026F; &#623; \26F

🧠 How It Works

1

Hexadecimal Code

&#x026F; uses the Unicode hexadecimal value 026F to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#623; uses the decimal Unicode value 623 to display the same character. A common method for IPA Extensions characters.

HTML markup
3

CSS Entity

\26F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods produce the glyph: ɯ. Unicode U+026F sits in IPA Extensions. Do not confuse with plain m (U+006D), ɱ (m hook), or ͫ (combining m). Use IPA-capable fonts for reliable rendering.

Use Cases

The lowercase m reverse (ɯ) is commonly used in:

🎤 IPA transcription

Standard IPA symbol for the close back unrounded vowel in phonetic transcriptions.

🇹🇷 Turkish

Phonetic notation for the vowel related to dotless ı and the /ɯ/ sound.

🇯🇵 Japanese & Korean

IPA notation for vowels in Japanese, Korean, and related language documentation.

📖 Dictionaries

Pronunciation keys and language-learning materials using IPA notation.

🔤 Linguistics

Academic papers, phonology textbooks, and language documentation using IPA vowel symbols.

♿ Accessibility

Using U+026F ensures screen readers interpret ɯ as one IPA character.

⚙ Programmatic HTML

When generating phonetic markup, using &#623; or &#x026F; ensures correct output.

💡 Best Practices

Do

  • Use U+026F (ɯ) for the IPA turned-m vowel symbol; use U+006D for plain m when semantics matter
  • Serve pages as UTF-8; you can also type ɯ directly in UTF-8 source
  • Use IPA-capable fonts (e.g. Doulos SIL, Charis SIL) for reliable rendering
  • Prefer the precomposed character U+026F over combining forms
  • Pick one entity style (hex or decimal) per project for consistency

Don’t

  • Substitute plain m or w when ɯ is required for correct IPA notation
  • Confuse ɯ (turned m) with ɱ (m hook) or ͫ (combining m)
  • Expect a named HTML entity—none exists for this character
  • Put CSS escape \26F in HTML text nodes
  • Assume all fonts render IPA Extensions glyphs identically

Key Takeaways

1

Three references render ɯ; no named entity exists

&#x026F; &#623;
2

For CSS stylesheets, use the escape in the content property

\26F
3

Unicode U+026F — LATIN SMALL LETTER TURNED M

4

IPA symbol for close back unrounded vowel in Turkish, Japanese, Korean, and more

❓ Frequently Asked Questions

Use &#x026F; (hex), &#623; (decimal), or \26F in CSS content. There is no named HTML entity for ɯ. In UTF-8 you can also type the character directly.
U+026F (LATIN SMALL LETTER TURNED M). IPA Extensions block. Hex 026F, decimal 623. It is the IPA symbol for the close back unrounded vowel.
When writing IPA transcriptions, linguistic content, dictionary pronunciation guides, and language documentation for Turkish, Japanese, Korean, and other languages with the close back unrounded vowel.
No. Use numeric codes &#x026F; or &#623;, or the CSS entity \26F. In UTF-8 pages you can type ɯ directly.
ɯ represents the close back unrounded vowel—a vowel with the back of the tongue raised (like “u”) but with lips spread, not rounded. It occurs in Turkish (e.g. dotless ı), Japanese, Korean, and other languages.

Explore More HTML Entities!

Discover 1500+ HTML character references — letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful