HTML Entity for Lowercase M Latin (ͫ)

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
U+036BCombining Diacritical Marks
ͫHexadecimal reference
ͫDecimal reference
—No named entity
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)Complete HTML Example
A simple example showing the combining Latin small letter m (ͫ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\36B";
}
</style>
</head>
<body>
<p>Symbol (hex): ͫ</p>
<p>Symbol (decimal): ͫ</p>
<p>Combined: aͫ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The combining Latin small letter m (ͫ) is supported in modern browsers when the font includes Combining Diacritical Marks glyphs:
👀 Live Preview
See the combining Latin small letter m (ͫ) alone and combined with a base character:
m (U+006D) or ɯ (turned m)🧠 How It Works
Hexadecimal Code
ͫ uses the Unicode hexadecimal value 036B to display the combining character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ͫ uses the decimal Unicode value 875 to display the same character. Works in all HTML contexts.
CSS Entity
\36B is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce ͫ. As a combining character, place it immediately after a base letter (e.g. aͫ). 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:
Extended phonetic transcription systems using a combining small m as a diacritic on a base character.
Academic papers and texts using combining characters for specialized notation.
Pronunciation keys that employ combining characters for fine-grained phonetic detail.
Documentation of languages or notation systems that use ͫ as part of a composite symbol.
Fonts and systems that support Combining Diacritical Marks for full rendering with a base character.
Using U+036B ensures the correct combining character is encoded for assistive technologies.
When generating markup, output base character + ͫ in the correct order.
💡 Best Practices
Do
- Place ͫ immediately after the base character (e.g.
aͫ)—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
\36Bin HTML text nodes
Key Takeaways
Three references render ͫ; no named entity exists
ͫ ͫFor CSS stylesheets, use the escape in the content property
\36BUnicode U+036B — COMBINING LATIN SMALL LETTER M
Non-spacing combining character—place after base letter in phonetic notation
Previous: Lowercase M Hook (ɱ) Next: Lowercase M Reverse
❓ Frequently Asked Questions
ͫ (hex), ͫ (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.ͫ or ͫ, or the CSS entity \36B. In UTF-8 pages you can type ͫ directly.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.
8 people found this page helpful
