HTML Entity for Uppercase N Caron (Ň)

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

What You'll Learn

How to display the uppercase N with caron (Ň) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The caron (háček, ˇ) is a diacritic used in Czech, Slovak, and other Central European orthographies. This character is U+0147 in the Latin Extended-A block and is the capital pair of ň.

Render it with Ň, Ň, Ň, or CSS escape \147. The named entity Ň is often the most readable option in HTML source.

⚡ Quick Reference — Uppercase N Caron Entity

Unicode U+0147

Latin Extended-A

Hex Code Ň

Hexadecimal reference

HTML Code Ň

Decimal reference

Named Entity Ň

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0147
Hex code       Ň
HTML code      Ň
Named entity   Ň
CSS code       \147
Meaning        Latin capital letter N with caron
Related        U+0148 = ň (lowercase, ň)
               U+004E = N (plain uppercase)
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the uppercase N caron (Ň) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\147";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x147;</p>
<p>Symbol (decimal): &#327;</p>
<p>Symbol (named): &Ncaron;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase N caron (Ň) and the named entity &Ncaron; are supported in modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase N caron (Ň) in multilingual and linguistic contexts:

Large glyphŇ
Case pairŇ (uppercase) / ň (lowercase, &ncaron;)
Czech & SlovakCapital N with caron in Czech and Slovak orthography
Named entity&Ncaron; renders as Ň
Not the same asN (U+004E) or Ń (N with acute)
Numeric refs&#x147; &#327; &Ncaron; \147

🧠 How It Works

1

Named Entity

&Ncaron; is the standard named entity for Ň—readable in source HTML and part of the HTML5 entity set.

HTML markup
2

Hexadecimal Code

&#x147; uses the Unicode hexadecimal value 147 to display the character. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#327; uses the decimal Unicode value 327 to display the same character. A common method for Latin Extended-A characters.

HTML markup
4

CSS Entity

\147 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ň. Unicode U+0147 sits in Latin Extended-A. Lowercase pair: U+0148 (ň, &ncaron;). Prefer the precomposed character over N + combining caron (U+030C). Do not confuse with plain N or Ń (N with acute).

Use Cases

The uppercase N caron (Ň) is commonly used in:

🇨🇿 Czech content

Czech websites, dictionaries, and language resources where Ň is required for correct spelling.

🇸🇮 Slovak content

Slovak language sites and educational materials using the caron-accented capital N.

🌐 Multilingual sites

International applications and global platforms displaying Central European characters.

📚 Language learning

Courses teaching the letter pair Ň/ň in Czech and Slovak.

🔤 Linguistics

Academic papers and reference materials using Latin Extended-A notation.

♿ Accessibility

Correct Unicode ensures screen readers handle Ň properly in accented text.

🔍 Search & SEO

Proper spelling helps search indexing for Czech and Slovak content.

💡 Best Practices

Do

  • Use &Ncaron; 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 ň (&ncaron;, U+0148)
  • Use fonts that support Latin Extended-A for caron-accented text
  • Distinguish Ň (caron) from plain N and Ń (acute)

Don’t

  • Substitute plain N when Ň is required for correct spelling
  • Confuse caron Ň with acute Ń or other accented N variants
  • Put CSS escape \147 in HTML text nodes
  • Use U+00147 or CSS \00147—the correct code is U+0147 and \147
  • Omit UTF-8 encoding on pages with extended Latin characters

Key Takeaways

1

Four references render Ň; named entity is most readable

&#x147; &#327; &Ncaron;
2

For CSS stylesheets, use the escape in the content property

\147
3

Unicode U+0147 — LATIN CAPITAL LETTER N WITH CARON

4

Lowercase pair is U+0148 (ň, &ncaron;)

❓ Frequently Asked Questions

Use &Ncaron; (named), &#x147; (hex), &#327; (decimal), or \147 in CSS content. The named entity &Ncaron; is the most readable for HTML content.
U+0147 (LATIN CAPITAL LETTER N WITH CARON). Latin Extended-A block. Hex 147, decimal 327. Commonly used in Czech, Slovak, and other languages with the caron diacritic.
In Czech and Slovak language content, multilingual websites, internationalization, language-learning resources, typography, and any content requiring the correct capital N with caron rather than plain N.
Yes. The named HTML entity is &Ncaron;. 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.
Ň (U+0147) is the capital letter N with a caron (háček) above, used in Czech, Slovak, and related orthographies. 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.

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