HTML Entity for Uppercase N Cedilla (Ņ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+0145

What Is Uppercase N Cedilla?

Uppercase N cedilla (Ņ) is the Unicode character at U+0145 in Latin Extended-A. Official name: LATIN CAPITAL LETTER N WITH CEDILLA — a capital N with a cedilla (¸), used in Latvian.

Remember
Character     Ņ
Unicode       U+0145
Named entity  Ņ  (capital N)
Hex entity    Ņ
Decimal       Ņ
CSS escape    \0145
Not the same  ņ · Ñ · Ň

Prefer Ņ in HTML markup — the capital N in the name matters. Numeric forms and typing Ņ in UTF-8 also work. For the lowercase letter, use ņ (ņ).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityŅHTML markup (preferred)
Direct characterŅHTML text (UTF-8)
Hex entityŅHTML markup
Decimal entityŅHTML markup
CSS escape\0145Stylesheet content
Lowercase (related)ņ (U+0146)Named ņ

When to Use Which

SituationUse
Capital N with cedilla (Ņ)Ņ or type Ņ
Lowercase n with cedilla (ņ)ņ (ņ)
Capital N with tilde (Ñ)Ñ (Ñ)
Capital N with caron (Ň)Ň (Ň)
Capital N with acute (Ń)Ń (Ń)
Generated text via ::before / ::aftercontent: "\0145"

Live Preview

Uppercase N cedilla rendered alone and next to related letters.

Large glyph Ņ
Notation ŅEMT
Compared Ņ  |  ņ  |  Ñ
Hint Compare: Cedilla Ņ | Lower ņ | Tilde Ñ | Caron Ň
With entities Named: Ņ | Hex: Ņ | Decimal: Ņ

Complete HTML Example

One page that shows the letter with named, hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to produce Ņ, plus a short Latvian word example.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase N Cedilla (Ņ)</title>
  <style>
    #point::after {
      content: "\0145";
    }
  </style>
</head>
<body>
  <p>Using Named Entity: &Ncedil;</p>
  <p>Using Hex Code: &#x145;</p>
  <p>Using HTML Code: &#325;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: Ņ</p>
  <p lang="lv">Word: &Ncedil;EMT</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &Ncedil; (capital N) is the clearest HTML form for U+0145. Lowercase &ncedil; is a different character (ņ).

2. Hex: U+0145 → &#x145; in HTML. Same glyph as the named entity.

3. Decimal: same code point as 325 → &#325;. Same glyph as hex and named.

4. CSS: use \0145 in content (not an HTML entity). #point::after appends that Ņ after the paragraph text.

5. Typed / word: paste Ņ in UTF-8, or build Latvian words like &Ncedil;EMT with lang="lv".

Pitfalls & Tips

Common mistakes when working with U+0145.

Case

&Ncedil; ≠ &ncedil;

&Ncedil; → Ņ (capital). &ncedil; → ņ (lowercase). Entity names are case-sensitive.

vs Ñ

Not a tilde

Ñ (&Ntilde;) is Spanish Ñ. Cedilla Ņ and tilde Ñ are different letters.

vs Ň

Not a caron

Ň (&Ncaron;) is Czech/Slovak Ň. Do not swap cedilla and caron.

Encoding

Keep UTF-8 declared

Latin Extended-A letters display reliably with <meta charset="UTF-8">. Prefer named entities when the source file encoding is uncertain.

CSS vs HTML

Do not mix escapes

\0145 belongs in CSS strings. &Ncedil; / &#x145; / &#325; belong in HTML.

A11y

Use real language context

When Ņ appears in Latvian words, keep surrounding text and lang accurate so screen readers get useful context.

Browser Support

Uppercase N cedilla (U+0145) and its entity forms (&Ncedil;, &#x145;, &#325;, CSS \\0145) are supported in all mainstream browsers. Latin Extended-A glyphs are widely available in system fonts.

✓ Universal support

Uppercase N Cedilla (&#x0145;)

Encode with named, hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+0145 / &Ncedil; Full support

Bottom line: Prefer &Ncedil; (capital N) in HTML. Use \\0145 only inside CSS content. Do not confuse with &ncedil; (ņ), tilde Ñ, or caron Ň.

Key Takeaways

  • Unicode: uppercase N cedilla is U+0145 (decimal 325) — glyph Ņ.
  • HTML: prefer &Ncedil; (capital N) — also &#x145; / &#325;.
  • CSS: use \0145 inside content for generated text.
  • Meaning: Ņ is capital cedilla — not ņ (&ncedil;), not Ñ (tilde), not Ň (caron).

One line: U+0145 → &Ncedil; / &#x145; / &#325; / CSS \0145.

Frequently Asked Questions

Use &Ncedil; (named), &#x145; (hex), &#325; (decimal), type Ņ directly in UTF-8, or the CSS escape \0145 in content. Prefer &Ncedil; in normal HTML.
U+0145 (LATIN CAPITAL LETTER N WITH CEDILLA). Hex 145, decimal 325. It belongs to Latin Extended-A (U+0100–U+017F).
Yes. Use &Ncedil; (capital N). Numeric forms &#325; and &#x145; also work. Note: &ncedil; (lowercase) is a different letter (ņ).
No. Ņ is U+0145 (&Ncedil;, capital cedilla). ņ is U+0146 (&ncedil;). Ñ is U+00D1 (&Ntilde;, tilde).
Use it for Latvian and other orthographies that need Ņ — not as a substitute for Spanish Ñ, Czech/Slovak Ň, or Polish Ń.
HTML entities (&Ncedil;, &#325;, or &#x145;) go in markup. The CSS escape \0145 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Uppercase N cedilla is Unicode U+0145 (decimal 325) — glyph Ņ in Latin Extended-A (U+0100–U+017F). HTML5 names it &Ncedil; (capital N). Official name: LATIN CAPITAL LETTER N WITH CEDILLA. Lowercase is &ncedil; (ņ, U+0146). Common in Latvian. Do not confuse with tilde Ñ (&Ntilde;) or caron Ň (&Ncaron;).

Next: Uppercase N Double Struck Capital

Learn the HTML entity for double-struck capital N (U+2115).

Continue tutorial →

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