HTML Entity for Uppercase Nj Small (Nj)

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
U+01CBLatin Extended-B
NjHexadecimal reference
NjDecimal reference
—No named entity
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)Complete HTML Example
A simple example showing titlecase Nj (Nj) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01CB";
}
</style>
</head>
<body>
<p>Symbol (hex): Nj</p>
<p>Symbol (decimal): Nj</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
Titlecase Nj (Nj) is supported in modern browsers when the font includes Latin Extended-B:
👀 Live Preview
See titlecase Nj (Nj) in typical language and typography contexts:
🧠 How It Works
Hexadecimal Code
Nj uses the Unicode hexadecimal value 01CB to display the character.
Decimal HTML Code
Nj uses the decimal Unicode value 459 to display the same character.
CSS Entity
\01CB is used in CSS stylesheets, typically in the content property of pseudo-elements.
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:
Words like Njegov at the beginning of sentences in Croatian and Serbian Latin text.
Websites serving Croatian, Serbian, or Bosnian-speaking audiences.
Textbooks showing the three NJ case forms (upper, title, lower).
Orthography notes and digraph references in Slavic language studies.
Font testing for Latin Extended-B ligature support.
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 (
NjorNj) in HTML for portability - Use
\01CBin CSScontentwhen 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+jwhen the ligature character is required - Use padded Unicode like U+001CB—the correct value is
U+01CB - Use
\001CBin CSS—the correct escape is\01CB - Confuse titlecase Nj with uppercase NJ or lowercase nj
- Put the CSS escape
\01CBdirectly in HTML text nodes
Key Takeaways
Three references render Nj (no named entity)
Nj NjFor CSS stylesheets, use the escape in the content property
\01CBUnicode U+01CB — titlecase Nj (capital N + small j)
NJ family: NJ (U+01CA), Nj (U+01CB), nj (U+01CC)
Previous: Uppercase NJ (NJ) Next: Uppercase O
❓ Frequently Asked Questions
Nj (hex), Nj (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).N and j are two code points and may sort, search, or display differently from the proper ligature form.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
