HTML Entity for Lowercase M Reverse Long Leg (ɰ)

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

What You'll Learn

How to display the lowercase m reverse long leg (ɰ) in HTML using hexadecimal, decimal, and CSS escape methods. This is the IPA symbol for the voiced velar approximant—a sound produced with the back of the tongue near the soft palate (velum), with slight narrowing but no full closure. It appears in Spanish (e.g. “lago”), Portuguese, Irish, and other languages. The character is U+0270 in the IPA Extensions block.

Render it with ɰ, ɰ, or CSS escape \270. There is no named HTML entity for this character. In UTF-8 documents you can also type ɰ directly.

⚡ Quick Reference — Lowercase M Reverse Long Leg Entity

Unicode U+0270

IPA Extensions

Hex Code ɰ

Hexadecimal reference

HTML Code ɰ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0270
Hex code       ɰ
HTML code      ɰ
Named entity   (none)
CSS code       \270
Meaning        Latin small letter turned m with long leg
IPA            Voiced velar approximant
Related        U+026F = ɯ (turned m)
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 long leg (ɰ) using hexadecimal code, decimal HTML code, and a CSS content escape:

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

🌐 Browser Support

The lowercase m reverse long leg (ɰ) 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 long leg (ɰ) in IPA and language contexts:

Large glyphɰ
IPAVoiced velar approximant
LanguagesSpanish (lago), Portuguese, Irish, and others
Not the same asɯ (turned m), Ɯ (capital turned M), or plain m
Numeric refs&#x0270; &#624; \270

🧠 How It Works

1

Hexadecimal Code

&#x0270; uses the Unicode hexadecimal value 0270 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\270 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+0270 sits in IPA Extensions. Do not confuse with ɯ (turned m) or Ɯ (capital turned M). Use IPA-capable fonts for reliable rendering.

Use Cases

The lowercase m reverse long leg (ɰ) is commonly used in:

🎤 IPA transcription

Standard IPA symbol for the voiced velar approximant in phonetic transcriptions.

🇪🇸 Spanish

Allophone of /ɡ/ in words like “lago” and related velar approximant contexts.

🇧🇷 Portuguese & Irish

IPA notation for velar approximant sounds in Celtic and Romance languages.

📖 Dictionaries

Pronunciation keys and language-learning materials using IPA notation.

🔤 Linguistics

Academic papers and phonology textbooks using IPA approximant symbols.

♿ Accessibility

Using U+0270 ensures screen readers interpret ɰ as one IPA character.

⚙ Programmatic HTML

When generating phonetic markup, using &#624; or &#x0270; ensures correct output.

💡 Best Practices

Do

  • Use U+0270 (ɰ) for the IPA velar approximant; 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+0270 over combining forms
  • Pick one entity style (hex or decimal) per project for consistency

Don’t

  • Substitute plain m or ɯ when ɰ is required for correct IPA notation
  • Confuse ɰ (turned m long leg) with ɯ (turned m) or Ɯ (capital turned M)
  • Expect a named HTML entity—none exists for this character
  • Put CSS escape \270 in HTML text nodes
  • Assume all fonts render IPA Extensions glyphs identically

Key Takeaways

1

Three references render ɰ; no named entity exists

&#x0270; &#624;
2

For CSS stylesheets, use the escape in the content property

\270
3

Unicode U+0270 — LATIN SMALL LETTER TURNED M WITH LONG LEG

4

IPA symbol for voiced velar approximant in Spanish, Portuguese, Irish, and more

❓ Frequently Asked Questions

Use &#x0270; (hex), &#624; (decimal), or \270 in CSS content. There is no named HTML entity for ɰ. In UTF-8 you can also type the character directly.
U+0270 (LATIN SMALL LETTER TURNED M WITH LONG LEG). IPA Extensions block. Hex 0270, decimal 624. It is the IPA symbol for the voiced velar approximant.
When writing IPA transcriptions, linguistic content, dictionary pronunciation guides, and language documentation for Spanish, Portuguese, Irish, and other languages with the voiced velar approximant.
No. Use numeric codes &#x0270; or &#624;, or the CSS entity \270. In UTF-8 pages you can type ɰ directly.
ɰ represents the voiced velar approximant—a sound made with the back of the tongue near the soft palate, with slight narrowing but no full closure. It occurs as an allophone of /ɡ/ in Spanish (e.g. “lago”), Portuguese, Irish, 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