HTML Entity for Lowercase N Retroflex Hook (ɳ)

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

What You'll Learn

How to display the lowercase n with retroflex hook (ɳ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0273 in the IPA Extensions block. It represents the voiced retroflex nasal consonant in the International Phonetic Alphabet (IPA)—produced with the tongue curled back, as in many South Asian and other languages.

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

⚡ Quick Reference — Lowercase N Retroflex Hook Entity

Unicode U+0273

IPA Extensions

Hex Code ɳ

Hexadecimal reference

HTML Code ɳ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0273
Hex code       ɳ
HTML code      ɳ
Named entity   (none)
CSS code       \0273
Meaning        Latin small letter n with retroflex hook
IPA            Voiced retroflex nasal
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

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

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

🌐 Browser Support

The lowercase n retroflex 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 retroflex hook (ɳ) in phonetic and linguistic contexts:

Large glyphɳ
IPAVoiced retroflex nasal consonant
LanguagesUsed in transcription of Hindi, Tamil, Swedish, and other retroflex languages
Not the same asɲ (left hook)  |  ŋ (eng)  |  ƞ (long leg)
Numeric refs&#x0273; &#627; \0273

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
4

CSS Entity

\0273 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+0273 sits in IPA Extensions. Do not confuse with ɲ (left hook), ŋ (eng), or ƞ (long leg).

Use Cases

The lowercase n retroflex hook (ɳ) is commonly used in:

🎤 IPA Transcription

Standard IPA symbol for the voiced retroflex nasal. Used in dictionaries, linguistics, and phonetic guides.

📝 Linguistics & Phonetics

Transcription of languages with retroflex consonants (e.g. Hindi, Tamil, Swedish). Ensures accurate phonetic notation.

🌐 Language Learning

Pronunciation guides, language apps, and academic linguistics. Correct characters improve readability for retroflex sounds.

⚙ Programmatic HTML

When building HTML from phonetic databases or dictionary data, using &#627; or &#x0273; guarantees correct output.

📚 Documentation

Tutorials on HTML entities, Unicode, or IPA showing numeric codes for ɳ.

♿ Accessibility

Using the correct character (U+0273) ensures assistive technologies interpret phonetic content correctly.

🎨 CSS Generated Content

Using \0273 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 (&#x0273; or &#627;) when escaping is required
  • Use \0273 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support IPA Extensions characters
  • Distinguish ɳ (retroflex hook) from ɲ (left hook) and ŋ (eng)

Don’t

  • Expect a named HTML entity—none exists for ɳ
  • Confuse ɳ (retroflex hook) with ɲ (left hook), ŋ (eng), or ƞ (long leg)
  • Substitute plain n when IPA retroflex nasal is required
  • Put CSS escape \0273 in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type ɳ directly, or use hex/decimal references

&#x0273; &#627;
2

For CSS stylesheets, use the escape in the content property

\0273
3

Unicode U+0273 — LATIN SMALL LETTER N WITH RETROFLEX HOOK

4

IPA voiced retroflex nasal; used in Hindi, Tamil, Swedish transcription

❓ Frequently Asked Questions

Use &#x0273; (hex), &#627; (decimal), or \0273 in CSS content. There is no named HTML entity for ɳ. In UTF-8 you can also type ɳ directly.
U+0273 (LATIN SMALL LETTER N WITH RETROFLEX HOOK). IPA Extensions block. Hex 0273, decimal 627. Represents the voiced retroflex nasal in IPA.
When displaying IPA transcription, linguistics or phonetic 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 retroflex hook (ɳ). Use numeric codes &#627; or &#x0273;, or the CSS entity \0273. In UTF-8 pages you can type ɳ directly.
HTML code (&#627; or &#x0273;) is used in HTML content; CSS entity \0273 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