HTML Entity for Nj (nj)

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

What You'll Learn

How to display the Nj (nj) character in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01CC (LATIN SMALL LETTER NJ) in Latin Extended-B (U+0180–U+024F).

Render it with nj, nj, or CSS escape \01CC. There is no named HTML entity. Nj is a Latin digraph used in Serbian, Croatian, and related South Slavic languages in Latin script.

⚡ Quick Reference — Nj

Unicode U+01CC

Latin Extended-B

Hex Code nj

Hexadecimal reference

HTML Code nj

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\01CC";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01CC;</p>
<p>Symbol (decimal): &#460;</p>
<p id="point">Symbol (CSS): </p>
<p>Text example: njiva (field)</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

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 Nj (nj) in typical language and typography contexts:

Large glyphnj
Lower/title/uppernj Nj NJ
In textnjiva / Njiva / NJIVA
Numeric refs&#x01CC; &#460; \01CC

🧠 How It Works

1

Hexadecimal Code

&#x01CC; uses the Unicode hexadecimal value 01CC to display the character.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\01CC 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+01CC is in Latin Extended-B. There is no named HTML entity.

Use Cases

Nj (nj) is commonly used in:

✍️ Serbian & Croatian

Correct spelling with the nj digraph in South Slavic Latin-script content.

📚 Language learning

Textbooks and resources that show the single-character digraph form.

🌐 Localization

International web pages that include Latin Extended-B characters.

📋 Linguistics

Orthography notes, digraph discussions, and character references.

📖 Typography

Font testing and examples showing extended Latin support.

📝 Documentation

Unicode reference pages and HTML entity tutorials for Latin letters.

💡 Best Practices

Do

  • Use numeric references (&#x01CC; or &#460;) in HTML for portability
  • Use \01CC 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)
  • Be consistent: either use the single character (nj) or the digraph (nj) depending on your typography rules

Don’t

  • Put the CSS escape \01CC directly in HTML text nodes
  • Use padded Unicode notation like U+001CC—the correct value is U+01CC
  • Use \001CC in CSS—the correct escape is \01CC
  • Assume every font shows nj correctly—test on mobile devices
  • Confuse nj with “nj” when exact spelling is required

Key Takeaways

1

Three references render nj (no named entity)

&#x01CC; &#460;
2

For CSS stylesheets, use the escape in the content property

\01CC
3

Unicode U+01CC — LATIN SMALL LETTER NJ

4

Upper/title variants: NJ (U+01CA), Nj (U+01CB), nj (U+01CC)

5

No named entity—use numeric codes or UTF-8 literal in source files

❓ Frequently Asked Questions

Use &#x01CC; (hex), &#460; (decimal), or \01CC in CSS content. All produce nj. There is no named HTML entity.
U+01CC (LATIN SMALL LETTER NJ). Hex 01CC, decimal 460. Uppercase NJ (U+01CA), titlecase Nj (U+01CB).
Use nj when the orthography or typography style requires the single-character digraph (common in language resources and character references). In general text, many systems still use the two-letter digraph “nj”.
HTML references (&#460; or &#x01CC;) go in markup. The CSS escape \01CC goes in stylesheets. Both render nj.
Extended Latin letters like U+01CC are not part of the named HTML entity set. Numeric references and CSS escapes are the standard way to 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