HTML Entity for Uppercase N Cedilla (Ņ)

What You'll Learn
How to display the uppercase N with cedilla (Ņ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0145 in the Latin Extended-A block and is the capital form of the Latvian letter ņ, where the cedilla (a hook below the letter) marks a palatalized n sound.
Render it with Ņ, Ņ, Ņ, or CSS escape \145. The named entity Ņ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase N Cedilla Entity
U+0145Latin Extended-A
ŅHexadecimal reference
ŅDecimal reference
ŅMost readable option
Name Value
──────────── ──────────
Unicode U+0145
Hex code Ņ
HTML code Ņ
Named entity Ņ
CSS code \145
Meaning Latin capital letter N with cedilla
Related U+0146 = ņ (lowercase)
U+004E = N (plain uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase N cedilla (Ņ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\145";
}
</style>
</head>
<body>
<p>Symbol (hex): Ņ</p>
<p>Symbol (decimal): Ņ</p>
<p>Symbol (named): Ņ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase N cedilla (Ņ) and the named entity Ņ are supported in modern browsers:
👀 Live Preview
See the uppercase N cedilla (Ņ) in multilingual and linguistic contexts:
🧠 How It Works
Named Entity
Ņ is the standard named entity for Ņ—readable in source HTML and part of the HTML5 entity set.
Hexadecimal Code
Ņ uses the Unicode hexadecimal value 145 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ņ uses the decimal Unicode value 325 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\145 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ņ. Unicode U+0145 sits in Latin Extended-A. Lowercase pair: U+0146 (ņ, ņ). Prefer the precomposed character over N + combining cedilla (U+0327). Do not confuse with plain N or Ň (N with caron).
Use Cases
The uppercase N cedilla (Ņ) is commonly used in:
Latvian websites, dictionaries, and language resources where Ņ is required for correct spelling.
International applications and global platforms displaying Baltic and extended Latin characters.
Courses teaching the letter pair Ņ/ņ in Latvian.
Academic papers and reference materials using Latin Extended-A notation.
Font design and creative projects requiring proper cedilla character representation.
Correct Unicode ensures screen readers handle Ņ properly in accented text.
Proper spelling helps search indexing for Latvian content.
💡 Best Practices
Do
- Use
Ņin HTML when possible for readability - Serve pages as UTF-8; you can also type Ņ directly in UTF-8 source
- Link to the lowercase pair ņ (
ņ, U+0146) - Use fonts that support Latin Extended-A for cedilla-accented text
- Distinguish Ņ (cedilla) from plain
Nand Ň (caron)
Don’t
- Substitute plain
Nwhen Ņ is required for correct spelling - Confuse cedilla Ņ with caron Ň or other accented N variants
- Put CSS escape
\145in HTML text nodes - Use
U+00145or CSS\00145—the correct code isU+0145and\145 - Omit UTF-8 encoding on pages with extended Latin characters
Key Takeaways
Four references render Ņ; named entity is most readable
Ņ Ņ ŅFor CSS stylesheets, use the escape in the content property
\145Unicode U+0145 — LATIN CAPITAL LETTER N WITH CEDILLA
Lowercase pair is U+0146 (ņ, ņ)
Previous: Uppercase N Caron (Ň) Next: Uppercase N Double Struck Capital
❓ Frequently Asked Questions
Ņ (named), Ņ (hex), Ņ (decimal), or \145 in CSS content. The named entity Ņ is the most readable for HTML content.U+0145 (LATIN CAPITAL LETTER N WITH CEDILLA). Latin Extended-A block. Hex 145, decimal 325. Commonly used in Latvian and other languages with the cedilla diacritic.Ņ. It is part of the HTML5 standard and is supported in modern browsers. You can also use numeric references or type Ņ directly in UTF-8.N (U+004E) is the standard uppercase N. They are distinct Unicode characters used in different linguistic contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
