HTML Entity for Nj (nj)

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
U+01CCLatin Extended-B
njHexadecimal reference
njDecimal reference
—No named entity
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)Complete HTML Example
A simple example showing Nj (nj) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\01CC";
}
</style>
</head>
<body>
<p>Symbol (hex): nj</p>
<p>Symbol (decimal): nj</p>
<p id="point">Symbol (CSS): </p>
<p>Text example: njiva (field)</p>
</body>
</html>🌐 Browser Support
Nj (nj) is supported in modern browsers when the font includes Latin Extended-B:
👀 Live Preview
See Nj (nj) in typical language and typography contexts:
🧠 How It Works
Hexadecimal Code
nj uses the Unicode hexadecimal value 01CC to display the character.
Decimal HTML Code
nj uses the decimal Unicode value 460 to display the same character.
CSS Entity
\01CC 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+01CC is in Latin Extended-B. There is no named HTML entity.
Use Cases
Nj (nj) is commonly used in:
Correct spelling with the nj digraph in South Slavic Latin-script content.
Textbooks and resources that show the single-character digraph form.
International web pages that include Latin Extended-B characters.
Orthography notes, digraph discussions, and character references.
Font testing and examples showing extended Latin support.
Unicode reference pages and HTML entity tutorials for Latin letters.
💡 Best Practices
Do
- Use numeric references (
njornj) in HTML for portability - Use
\01CCin CSScontentwhen 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
\01CCdirectly in HTML text nodes - Use padded Unicode notation like U+001CC—the correct value is
U+01CC - Use
\001CCin 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
Three references render nj (no named entity)
nj njFor CSS stylesheets, use the escape in the content property
\01CCUnicode U+01CC — LATIN SMALL LETTER NJ
Upper/title variants: NJ (U+01CA), Nj (U+01CB), nj (U+01CC)
No named entity—use numeric codes or UTF-8 literal in source files
❓ Frequently Asked Questions
nj (hex), nj (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).nj or nj) go in markup. The CSS escape \01CC goes in stylesheets. Both render nj.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
