HTML Entity for Lowercase M Latin (ͫ)

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

What You'll Learn

How to display the combining Latin small letter m (ͫ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is a combining diacritic—it attaches to a base character and is used in phonetic, linguistic, and specialized notation where a small “m” shape acts as a modifier. The character is U+036B in the Combining Diacritical Marks block.

Render it with ͫ, ͫ, or CSS escape \36B. There is no named HTML entity for this character. Place ͫ immediately after its base character (e.g. aͫ) for correct combining behavior.

⚡ Quick Reference — Lowercase M Latin Entity

Unicode U+036B

Combining Diacritical Marks

Hex Code ͫ

Hexadecimal reference

HTML Code ͫ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+036B
Hex code       ͫ
HTML code      ͫ
Named entity   (none)
CSS code       \36B
Meaning        Combining Latin small letter m
Type           Combining character (non-spacing)
Related        U+006D = m (plain lowercase)
Block          Combining Diacritical Marks (U+0300–U+036F)
1

Complete HTML Example

A simple example showing the combining Latin small letter m (ͫ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\36B";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x036B;</p>
<p>Symbol (decimal): &#875;</p>
<p>Combined: a&#x036B;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The combining Latin small letter m (ͫ) is supported in modern browsers when the font includes Combining Diacritical Marks glyphs:

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

👀 Live Preview

See the combining Latin small letter m (ͫ) alone and combined with a base character:

Combining glyphͫ
With base
Character typeNon-spacing combining diacritic
Not the same asplain m (U+006D) or ɯ (turned m)
Numeric refs&#x036B; &#875; \36B

🧠 How It Works

1

Hexadecimal Code

&#x036B; uses the Unicode hexadecimal value 036B to display the combining character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#875; uses the decimal Unicode value 875 to display the same character. Works in all HTML contexts.

HTML markup
3

CSS Entity

\36B 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 ͫ. As a combining character, place it immediately after a base letter (e.g. a&#x036B;). Do not confuse with plain m (U+006D). Rendering depends on font support for combining marks.

Use Cases

The combining Latin small letter m (ͫ) is commonly used in:

🎤 Phonetic notation

Extended phonetic transcription systems using a combining small m as a diacritic on a base character.

🔤 Linguistics

Academic papers and texts using combining characters for specialized notation.

📖 Dictionaries

Pronunciation keys that employ combining characters for fine-grained phonetic detail.

🌐 Language docs

Documentation of languages or notation systems that use ͫ as part of a composite symbol.

🎨 Typography

Fonts and systems that support Combining Diacritical Marks for full rendering with a base character.

♿ Accessibility

Using U+036B ensures the correct combining character is encoded for assistive technologies.

⚙ Programmatic HTML

When generating markup, output base character + &#x036B; in the correct order.

💡 Best Practices

Do

  • Place ͫ immediately after the base character (e.g. a&#x036B;)—order matters for combining marks
  • Serve pages as UTF-8; you can also type ͫ directly in UTF-8 source
  • Use fonts that support Combining Diacritical Marks (U+0300–U+036F)
  • Use numeric references when escaping or generating HTML programmatically
  • Pick one entity style (hex or decimal) per project for consistency

Don’t

  • Substitute plain m (U+006D) when ͫ is required as a combining diacritic
  • Confuse ͫ (combining m) with ɯ (turned m, U+026F)
  • Expect a named HTML entity—none exists for this character
  • Put the combining character before the base letter—it must follow the base
  • Put CSS escape \36B in HTML text nodes

Key Takeaways

1

Three references render ͫ; no named entity exists

&#x036B; &#875;
2

For CSS stylesheets, use the escape in the content property

\36B
3

Unicode U+036B — COMBINING LATIN SMALL LETTER M

4

Non-spacing combining character—place after base letter in phonetic notation

❓ Frequently Asked Questions

Use &#x036B; (hex), &#875; (decimal), or \36B in CSS content. There is no named HTML entity for ͫ. In UTF-8 you can also type the character directly, typically after a base character.
U+036B (COMBINING LATIN SMALL LETTER M). Combining Diacritical Marks block. Hex 036B, decimal 875. It is a non-spacing combining character.
When writing phonetic or linguistic notation that requires the combining small m as a diacritic or modifier on a base character, and any content that must display this combining character correctly for meaning and accessibility.
No. Use numeric codes &#x036B; or &#875;, or the CSS entity \36B. In UTF-8 pages you can type ͫ directly.
ͫ (U+036B) is a combining character that attaches to a preceding base character and is used in phonetic/linguistic notation. m (U+006D) is a standalone letter. Use ͫ when you need the combining form; use m for the normal letter.

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