HTML Entity for Uppercase N Left Hook (Ɲ)

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

What You'll Learn

How to display the uppercase N with left hook (Ɲ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+019D in the Latin Extended-B block. It is the capital form of ɲ and represents the palatal nasal in IPA and African language orthographies such as Bambara and Fula (Fulfulde).

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

⚡ Quick Reference — Uppercase N Left Hook Entity

Unicode U+019D

Latin Extended-B

Hex Code Ɲ

Hexadecimal reference

HTML Code Ɲ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+019D
Hex code       Ɲ
HTML code      Ɲ
Named entity   (none)
CSS code       \019D
Meaning        Latin capital letter N with left hook
IPA            Palatal nasal (uppercase of ɲ)
Related        U+0272 = ɲ (lowercase)
               U+004E = N (plain uppercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase 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: "\019D";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x019D;</p>
<p>Symbol (decimal): &#413;</p>
<p>Symbol (direct): Ɲ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase N left hook (Ɲ) is supported in all modern browsers as part of Latin Extended-B:

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

👀 Live Preview

See the uppercase N left hook (Ɲ) in phonetic and language contexts:

Large glyphƝ
Case pairƝ (uppercase) / ɲ (lowercase, palatal nasal)
African languagesUsed in Bambara, Fula (Fulfulde), and related orthographies
Not the same asN (U+004E)  |  Ñ (N tilde, Spanish)  |  ȵ (n curl)
No named entityUse numeric refs or type Ɲ directly in UTF-8
Numeric refs&#x019D; &#413; \019D

🧠 How It Works

1

Hexadecimal Code

&#x019D; uses the Unicode hexadecimal value 019D to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#413; uses the decimal Unicode value 413 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

\019D 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+019D sits in Latin Extended-B. Lowercase pair: U+0272 (ɲ). Do not confuse with plain N (U+004E), Ñ (N tilde), or ȵ (n curl).

Use Cases

The uppercase N left hook (Ɲ) is commonly used in:

🎤 IPA transcription

Uppercase palatal nasal symbol in phonetic notation, dictionaries, and linguistics resources.

🌍 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.

📄 Academic writing

Research papers, thesis documents, and scholarly content requiring proper phonetic symbol representation.

⚙ Programmatic HTML

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

♿ Accessibility

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

🎨 CSS generated content

Using \019D 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 (&#x019D; or &#413;) when escaping is required
  • Link to the lowercase pair ɲ (U+0272)
  • Use fonts that support Latin Extended-B and IPA characters
  • Distinguish Ɲ (n left hook) from Ñ (Spanish N tilde) and plain N

Don’t

  • Expect a named HTML entity—none exists for Ɲ
  • Confuse Ɲ (n left hook) with Ñ (N tilde) or ȵ (n curl)
  • Substitute plain N when Ɲ is required in African orthography or IPA
  • Put CSS escape \019D in HTML text nodes
  • Use U+0019D or CSS \0019D—the correct code is U+019D and \019D

Key Takeaways

1

Type Ɲ directly, or use hex/decimal references

&#x019D; &#413;
2

For CSS stylesheets, use the escape in the content property

\019D
3

Unicode U+019D — LATIN CAPITAL LETTER N WITH LEFT HOOK

4

Lowercase pair is U+0272 (ɲ); used in IPA and African languages

❓ Frequently Asked Questions

Use &#x019D; (hex), &#413; (decimal), or \019D in CSS content. There is no named HTML entity for Ɲ. In UTF-8 you can also type Ɲ directly.
U+019D (LATIN CAPITAL LETTER N WITH LEFT HOOK). Latin Extended-B block. Hex 019D, decimal 413. Uppercase form of the palatal nasal ɲ. Used in African languages like Bambara and Fula.
When displaying IPA transcription, African language text (e.g. Bambara, Fula), linguistics content, academic writing, multilingual websites, 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 uppercase N left hook (Ɲ). Use numeric codes &#413; or &#x019D;, or the CSS entity \019D. In UTF-8 pages you can type Ɲ directly.
Ɲ (U+019D) is N with a left hook, used in IPA and African orthographies for the palatal nasal. Ñ (U+00D1) is N with a tilde, used in Spanish and other languages (&Ntilde;). They are distinct Unicode characters with different pronunciations and usage contexts.

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