HTML Entity for Uppercase Nj Small (Nj)

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

What You'll Learn

How to display the titlecase Nj ligature (Nj) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01CB (LATIN CAPITAL LETTER N WITH SMALL LETTER J) in Latin Extended-B (U+0180–U+024F)—the form used at the start of words in South Slavic Latin script.

Render it with Nj, Nj, or CSS escape \01CB. There is no named HTML entity. Do not confuse with uppercase NJ (U+01CA) or lowercase nj (U+01CC).

⚡ Quick Reference — Titlecase Nj

Unicode U+01CB

Latin Extended-B

Hex Code Nj

Hexadecimal reference

HTML Code Nj

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01CB
Hex code       Nj
HTML code      Nj
Named entity   (none)
CSS code       \01CB
Meaning        Titlecase Nj ligature (capital N + small j)
Uppercase      U+01CA = NJ
Lowercase      U+01CC = nj
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing titlecase Nj (Nj) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01CB";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01CB;</p>
<p>Symbol (decimal): &#459;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

Titlecase Nj (Nj) is supported in modern browsers when the font includes Latin Extended-B:

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

👀 Live Preview

See titlecase Nj (Nj) in typical language and typography contexts:

Large glyphNj
Unicode nameLATIN CAPITAL LETTER N WITH SMALL LETTER J
Upper/title/lowerNJ Nj nj
In textnjegov / Njegov / NJEGOV
Numeric refs&#x01CB; &#459; \01CB

🧠 How It Works

1

Hexadecimal Code

&#x01CB; uses the Unicode hexadecimal value 01CB to display the character.

HTML markup
2

Decimal HTML Code

&#459; uses the decimal Unicode value 459 to display the same character.

HTML markup
3

CSS Entity

\01CB is used in CSS stylesheets, typically in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: Nj. Unicode U+01CB is the titlecase Nj form. Do not confuse with NJ (U+01CA) or nj (U+01CC), or separate N + j letters.

Use Cases

Titlecase Nj (Nj) is commonly used in:

✍️ Sentence-start spelling

Words like Njegov at the beginning of sentences in Croatian and Serbian Latin text.

🌐 Multilingual sites

Websites serving Croatian, Serbian, or Bosnian-speaking audiences.

📚 Language learning

Textbooks showing the three NJ case forms (upper, title, lower).

📋 Linguistics

Orthography notes and digraph references in Slavic language studies.

📖 Typography

Font testing for Latin Extended-B ligature support.

⚙ CSS content

Pseudo-elements and generated content using \01CB in stylesheets.

💡 Best Practices

Do

  • Use Nj for titlecase Nj at word starts; use NJ for all-caps and nj for lowercase
  • Use numeric references (&#x01CB; or &#459;) in HTML for portability
  • Use \01CB in CSS content when inserting via pseudo-elements
  • Ensure your font supports Latin Extended-B for consistent rendering
  • Serve pages as UTF-8; you can also type Nj directly in UTF-8 source

Don’t

  • Substitute separate N + j when the ligature character is required
  • Use padded Unicode like U+001CB—the correct value is U+01CB
  • Use \001CB in CSS—the correct escape is \01CB
  • Confuse titlecase Nj with uppercase NJ or lowercase nj
  • Put the CSS escape \01CB directly in HTML text nodes

Key Takeaways

1

Three references render Nj (no named entity)

&#x01CB; &#459;
2

For CSS stylesheets, use the escape in the content property

\01CB
3

Unicode U+01CB — titlecase Nj (capital N + small j)

4

NJ family: NJ (U+01CA), Nj (U+01CB), nj (U+01CC)

5

Previous: Uppercase NJ (NJ)   Next: Uppercase O

❓ Frequently Asked Questions

Use &#x01CB; (hex), &#459; (decimal), or \01CB in CSS content. All produce Nj. There is no named HTML entity.
U+01CB (LATIN CAPITAL LETTER N WITH SMALL LETTER J). Hex 01CB, decimal 459. Uppercase NJ (U+01CA), lowercase nj (U+01CC).
At the start of words in Croatian, Serbian, and Bosnian Latin text (e.g. Njegov), in multilingual websites, language-learning resources, and anywhere the titlecase ligature form is required.
No. Nj (U+01CB) is a single Unicode ligature character. Separate N and j are two code points and may sort, search, or display differently from the proper ligature form.
NJ (NJ) is the all-uppercase NJ form. Nj (Nj) is titlecase (capital N + small j). nj (nj) is lowercase. All three are distinct Unicode characters in Latin Extended-B.

Explore More HTML Entities!

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