HTML Entity for Lowercase N Curl (ȵ)

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

What You'll Learn

How to display the lowercase n with curl (ȵ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0235 in the Latin Extended-B block. It is used in phonetic transcription—especially in Sinological contexts—for the alveolo-palatal nasal consonant (similar to “ny” in “canyon”).

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

⚡ Quick Reference — Lowercase N Curl Entity

Unicode U+0235

Latin Extended-B

Hex Code ȵ

Hexadecimal reference

HTML Code ȵ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0235
Hex code       ȵ
HTML code      ȵ
Named entity   (none)
CSS code       \0235
Meaning        Latin small letter n with curl
Phonetic       Alveolo-palatal nasal
Related        U+0272 = ɲ (n with left hook)
Related        U+014B = ŋ (eng)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

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

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

🌐 Browser Support

The lowercase n curl (ȵ) 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 curl (ȵ) in phonetic and content contexts:

Large glyphȵ
Phonetic useAlveolo-palatal nasal in Sinological transcription
Not the same asɲ (n left hook)  |  ŋ (eng)  |  ň (n caron)
No named entityUse numeric refs or type ȵ directly in UTF-8
BlockLatin Extended-B (U+0180–U+024F)
Numeric refs&#x0235; &#565; \0235

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
4

CSS Entity

\0235 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+0235 sits in Latin Extended-B. Do not confuse with ɲ (n with left hook), ŋ (eng), or ň (n with caron).

Use Cases

The lowercase n curl (ȵ) is commonly used in:

📝 Phonetic Transcription

Linguistics and Sinological transcription for the alveolo-palatal nasal consonant. Entity or UTF-8 ensures correct display in academic content.

🔤 Linguistics & IPA

Extended Latin characters for phonetic notation. Correct character (U+0235) avoids confusion with similar symbols like ɲ or ŋ.

🎨 Typography

When a font or design uses ȵ for phonetic or specialized text in generated content.

⚙ Programmatic HTML

When building HTML from linguistic data or phonetic databases, using &#565; or &#x0235; guarantees correct output.

📚 Documentation

Tutorials on HTML entities, Unicode, or phonetic transcription showing numeric codes for ȵ.

♿ Accessibility

Using the correct character (U+0235) ensures assistive technologies interpret phonetic symbols as intended.

📄 CSS Generated Content

Using \0235 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 (&#x0235; or &#565;) when escaping is required
  • Use \0235 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B phonetic characters
  • Distinguish ȵ (U+0235) from ɲ, ŋ, and ň in linguistic content

Don’t

  • Expect a named HTML entity—none exists for ȵ
  • Confuse ȵ (n curl) with ɲ (n left hook), ŋ (eng), or ň (n caron)
  • Put CSS escape \0235 in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML
  • Assume all fonts render ȵ identically—test across devices

Key Takeaways

1

Type ȵ directly, or use hex/decimal references

&#x0235; &#565;
2

For CSS stylesheets, use the escape in the content property

\0235
3

Unicode U+0235 — LATIN SMALL LETTER N WITH CURL

4

Used in phonetic and Sinological transcription; no named entity

❓ Frequently Asked Questions

Use &#x0235; (hex), &#565; (decimal), or \0235 in CSS content. There is no named HTML entity for ȵ. In UTF-8 you can also type ȵ directly.
U+0235 (LATIN SMALL LETTER N WITH CURL). Latin Extended-B block. Hex 0235, decimal 565. Used in phonetic transcription for the alveolo-palatal nasal consonant.
When displaying phonetic or Sinological transcription, in 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 curl (ȵ). Use numeric codes &#565; or &#x0235;, or the CSS entity \0235. In UTF-8 pages you can type ȵ directly.
HTML code (&#565; or &#x0235;) is used in HTML content; CSS entity \0235 is used in stylesheets in the content property of pseudo-elements. Both produce ȵ.

Explore More HTML Entities!

Discover 1500+ HTML character references — phonetic 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