HTML Entity for Lowercase N Long Leg (ƞ)

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

What You'll Learn

How to display the lowercase n with long right leg (ƞ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+019E in the Latin Extended-B block. It is an obsolete letter used historically in Lakota orthography for vowel nasalization (later replaced by ŋ) and in the International Phonetic Alphabet from 1951 to 1976.

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

⚡ Quick Reference — Lowercase N Long Leg Entity

Unicode U+019E

Latin Extended-B

Hex Code ƞ

Hexadecimal reference

HTML Code ƞ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+019E
Hex code       ƞ
HTML code      ƞ
Named entity   (none)
CSS code       \019E
Meaning        Latin small letter n with long right leg
Related        U+0220 = Ƞ (uppercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase n long leg (ƞ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\019E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x019E;</p>
<p>Symbol (decimal): &#414;</p>
<p>Symbol (direct): ƞ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase n long leg (ƞ) 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 lowercase n long leg (ƞ) in historical and linguistic contexts:

Large glyphƞ
Historical useLakota orthography (vowel nasalization) and legacy IPA (1951–1976)
Modern replacementLakota now uses ŋ (eng) for nasalization
UppercaseȠ (U+0220) — LATIN CAPITAL LETTER N WITH LONG RIGHT LEG
Not the same asŋ (eng)  |  ɳ (retroflex hook)  |  ɲ (left hook)
Numeric refs&#x019E; &#414; \019E

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#414; uses the decimal Unicode value 414 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 historical letter.

HTML markup
4

CSS Entity

\019E 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+019E sits in Latin Extended-B. Uppercase equivalent: U+0220 (Ƞ). Do not confuse with ŋ (eng) or ɳ (retroflex hook).

Use Cases

The lowercase n long leg (ƞ) is commonly used in:

📜 Historical Lakota

Used in the 1982 Lakota orthography for vowel nasalization (since replaced by ŋ). Legacy archives may still reference ƞ.

🎤 Legacy IPA

Appeared in the International Phonetic Alphabet from 1951 to 1976 for a moraic nasal. Historical phonetic literature may reference this symbol.

📐 Typography

When a font or design includes this character for linguistic or decorative use. Use the entity to output it in HTML or CSS.

⚙ Programmatic HTML

When building HTML from legacy dictionaries or linguistic data, using &#414; or &#x019E; guarantees correct output.

📚 Documentation

Tutorials on HTML entities, Unicode, or the history of IPA and Lakota orthography showing numeric codes for ƞ.

♿ Accessibility

Using the correct character (U+019E) ensures assistive technologies interpret linguistic or legacy content correctly.

🎨 CSS Generated Content

Using \019E 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 (&#x019E; or &#414;) when escaping is required
  • Use \019E in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B characters
  • Note the uppercase pair Ƞ (U+0220) when working with legacy texts

Don’t

  • Expect a named HTML entity—none exists for ƞ
  • Confuse ƞ (n long leg) with ŋ (eng), ɳ (retroflex hook), or ɲ (left hook)
  • Use U+0220 (Ƞ) when you need the lowercase form—that is the uppercase character
  • Put CSS escape \019E in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type ƞ directly, or use hex/decimal references

&#x019E; &#414;
2

For CSS stylesheets, use the escape in the content property

\019E
3

Unicode U+019E — LATIN SMALL LETTER N WITH LONG RIGHT LEG

4

Historical Lakota and legacy IPA symbol; uppercase is Ƞ

❓ Frequently Asked Questions

Use &#x019E; (hex), &#414; (decimal), or \019E in CSS content. There is no named HTML entity for ƞ. In UTF-8 you can also type ƞ directly.
U+019E (LATIN SMALL LETTER N WITH LONG RIGHT LEG). Latin Extended-B block. Hex 019E, decimal 414. Uppercase pair is U+0220 (Ƞ). Used historically in Lakota and legacy IPA.
When displaying historical Lakota text, legacy IPA or linguistic 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 long leg (ƞ). Use numeric codes &#414; or &#x019E;, or the CSS entity \019E. In UTF-8 pages you can type ƞ directly.
HTML code (&#414; or &#x019E;) is used in HTML content; CSS entity \019E 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