HTML Entity for Lowercase N Left Hook (ɲ)

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

What You'll Learn

How to display the lowercase n with left hook (ɲ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0272 in the IPA Extensions block. It represents the palatal nasal in the International Phonetic Alphabet (IPA)—the sound in “canyon” or “onion”—and is used in African language orthographies such as Bambara and Fula (Fulfulde).

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

⚡ Quick Reference — Lowercase N Left Hook Entity

Unicode U+0272

IPA Extensions

Hex Code ɲ

Hexadecimal reference

HTML Code ɲ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0272
Hex code       ɲ
HTML code      ɲ
Named entity   (none)
CSS code       \0272
Meaning        Latin small letter n with left hook
IPA            Palatal nasal (ny in “canyon”)
Related        U+019D = Ɲ (uppercase)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase n left hook (ɲ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

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

🌐 Browser Support

The lowercase n left hook (ɲ) is supported in all modern browsers as part of IPA Extensions:

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

👀 Live Preview

See the lowercase n left hook (ɲ) in phonetic and language contexts:

Large glyphɲ
IPAPalatal nasal: caɲon, oɲion
African languagesUsed in Bambara, Fula (Fulfulde), and related orthographies
UppercaseƝ (U+019D) — LATIN CAPITAL LETTER N WITH LEFT HOOK
Not the same asȵ (n curl)  |  ŋ (eng)  |  ñ (n tilde)
Numeric refs&#x0272; &#626; \0272

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#626; uses the decimal Unicode value 626 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

Direct Character

Type ɲ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this IPA/orthography symbol.

HTML markup
4

CSS Entity

\0272 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+0272 sits in IPA Extensions. Uppercase equivalent: U+019D (Ɲ). Do not confuse with ȵ (n curl), ŋ (eng), or ñ (n tilde).

Use Cases

The lowercase n left hook (ɲ) is commonly used in:

🎤 IPA Transcription

Standard IPA symbol for the palatal nasal consonant. Used in dictionaries, linguistics, and phonetic guides.

🌍 African Languages

Used in Bambara, Fula (Fulfulde), and other African orthographies. Essential for correct spelling and localization.

🌐 Multilingual Sites

Localization for African languages, language learning platforms, and academic linguistics content.

⚙ Programmatic HTML

When building HTML from dictionaries or CMS content, using &#626; or &#x0272; guarantees correct output.

📚 Documentation

Tutorials on HTML entities, Unicode, IPA, or African language orthographies showing numeric codes for ɲ.

♿ Accessibility

Using the correct character (U+0272) ensures assistive technologies interpret language-specific content correctly.

🎨 CSS Generated Content

Using \0272 in the CSS content property to insert ɲ via pseudo-elements.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ɲ directly in UTF-8 source
  • Use numeric references (&#x0272; or &#626;) when escaping is required
  • Use \0272 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support IPA Extensions characters
  • Distinguish ɲ (palatal nasal) from ñ (Spanish n tilde) and ȵ (n curl)

Don’t

  • Expect a named HTML entity—none exists for ɲ
  • Confuse ɲ (n left hook) with ȵ (n curl), ŋ (eng), or ň (n caron)
  • Substitute ñ (n tilde) when ɲ is required in IPA or African orthography
  • Put CSS escape \0272 in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type ɲ directly, or use hex/decimal references

&#x0272; &#626;
2

For CSS stylesheets, use the escape in the content property

\0272
3

Unicode U+0272 — LATIN SMALL LETTER N WITH LEFT HOOK

4

IPA palatal nasal; used in Bambara, Fula; uppercase is Ɲ

❓ Frequently Asked Questions

Use &#x0272; (hex), &#626; (decimal), or \0272 in CSS content. There is no named HTML entity for ɲ. In UTF-8 you can also type ɲ directly.
U+0272 (LATIN SMALL LETTER N WITH LEFT HOOK). IPA Extensions block. Hex 0272, decimal 626. Represents the palatal nasal in IPA and is used in African languages like Bambara and Fula. Uppercase form is U+019D (Ɲ).
When displaying IPA transcription, African language text (e.g. Bambara, Fula), linguistics content, documentation, or when you need an explicit character reference. In UTF-8 pages you can type ɲ directly.
No. There is no named HTML entity for the lowercase n left hook (ɲ). Use numeric codes &#626; or &#x0272;, or the CSS entity \0272. In UTF-8 pages you can type ɲ directly.
HTML code (&#626; or &#x0272;) is used in HTML content; CSS entity \0272 is used in stylesheets in the content property of pseudo-elements. Both produce ɲ.

Explore More HTML Entities!

Discover 1500+ HTML character references — IPA symbols, letters, 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