HTML Entity for Uppercase N Caron (Ň)

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
U+0147Latin Extended-A
ŇHexadecimal reference
ŇDecimal reference
ŇMost readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\147";
}
</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 caron (Ň) and the named entity Ň are supported in modern browsers:
👀 Live Preview
See the uppercase N caron (Ň) 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 147 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ň uses the decimal Unicode value 327 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\147 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+0147 sits in Latin Extended-A. Lowercase pair: U+0148 (ň, ň). 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 websites, dictionaries, and language resources where Ň is required for correct spelling.
Slovak language sites and educational materials using the caron-accented capital N.
International applications and global platforms displaying Central European characters.
Courses teaching the letter pair Ň/ň in Czech and Slovak.
Academic papers and reference materials using Latin Extended-A notation.
Correct Unicode ensures screen readers handle Ň properly in accented text.
Proper spelling helps search indexing for Czech and Slovak 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+0148) - Use fonts that support Latin Extended-A for caron-accented text
- Distinguish Ň (caron) from plain
Nand Ń (acute)
Don’t
- Substitute plain
Nwhen Ň is required for correct spelling - Confuse caron Ň with acute Ń or other accented N variants
- Put CSS escape
\147in HTML text nodes - Use
U+00147or CSS\00147—the correct code isU+0147and\147 - 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
\147Unicode U+0147 — LATIN CAPITAL LETTER N WITH CARON
Lowercase pair is U+0148 (ň, ň)
Previous: Uppercase N Acute (Ń) Next: Uppercase N Cedilla
❓ Frequently Asked Questions
Ň (named), Ň (hex), Ň (decimal), or \147 in CSS content. The named entity Ň 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.Ň. 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
