HTML Entity for Uppercase NJ (NJ)

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

What You'll Learn

How to display the uppercase NJ ligature (NJ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01CA (LATIN CAPITAL LETTER N WITH SMALL LETTER J) in Latin Extended-B (U+0180–U+024F).

Render it with NJ, NJ, or CSS escape \01CA. There is no named HTML entity. The NJ ligature is used in Croatian, Serbian, and related South Slavic languages written in Latin script.

⚡ Quick Reference — Uppercase NJ

Unicode U+01CA

Latin Extended-B

Hex Code NJ

Hexadecimal reference

HTML Code NJ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

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

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

🌐 Browser Support

Uppercase 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 uppercase 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&#x01CA; &#458; \01CA

🧠 How It Works

1

Hexadecimal Code

&#x01CA; uses the Unicode hexadecimal value 01CA to display the character.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\01CA 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+01CA is in Latin Extended-B. There is no named HTML entity. Do not confuse with separate N + J letters.

Use Cases

Uppercase NJ (NJ) is commonly used in:

✍️ Croatian & Serbian

All-caps spelling with the NJ digraph in South Slavic Latin-script content.

🌐 Multilingual sites

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

📚 Language learning

Textbooks and resources showing uppercase ligature forms.

📋 Linguistics

Orthography notes, digraph discussions, and character references.

📖 Typography

Font testing and examples showing extended Latin ligature support.

⚙ CSS content

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

💡 Best Practices

Do

  • Use numeric references (&#x01CA; or &#458;) in HTML for portability
  • Use \01CA in CSS content when inserting via pseudo-elements
  • Ensure your font supports Latin Extended-B for consistent rendering
  • Use UTF-8 everywhere (HTML pages, templates, and databases)
  • Know the three NJ variants: NJ (upper), Nj (title), nj (lower)

Don’t

  • Put the CSS escape \01CA directly in HTML text nodes
  • Substitute separate N + J when the ligature character is required
  • Use padded Unicode like U+001CA—the correct value is U+01CA
  • Use \001CA in CSS—the correct escape is \01CA
  • Assume every font shows NJ correctly—test on mobile devices

Key Takeaways

1

Three references render NJ (no named entity)

&#x01CA; &#458;
2

For CSS stylesheets, use the escape in the content property

\01CA
3

Unicode U+01CA — LATIN CAPITAL LETTER N WITH SMALL LETTER J

4

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

❓ Frequently Asked Questions

Use &#x01CA; (hex), &#458; (decimal), or \01CA in CSS content. All produce NJ. There is no named HTML entity.
U+01CA (LATIN CAPITAL LETTER N WITH SMALL LETTER J). Hex 01CA, decimal 458. Titlecase Nj (U+01CB), lowercase nj (U+01CC).
In Croatian, Serbian, and Bosnian Latin content when all-caps spelling requires the NJ digraph, in multilingual websites, language-learning resources, and linguistics references where the single-character form is preferred.
No. NJ (U+01CA) 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.
HTML references (&#458; or &#x01CA;) go in markup. The CSS escape \01CA goes in stylesheets. Both render NJ.

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