HTML Entity for Uppercase N Acute (Ń)

What You'll Learn
How to display the uppercase N with acute accent (Ń) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The acute accent (´) is a diacritic that modifies the letter N and is essential in Polish and other languages. This character is U+0143 in the Latin Extended-A block and is the capital pair of ń.
Render it with Ń, Ń, Ń, or CSS escape \143. The named entity Ń is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase N Acute Entity
U+0143Latin Extended-A
ŃHexadecimal reference
ŃDecimal reference
ŃMost readable option
Name Value
──────────── ──────────
Unicode U+0143
Hex code Ń
HTML code Ń
Named entity Ń
CSS code \143
Meaning Latin capital letter N with acute
Related U+0144 = ń (lowercase pair, ń)
U+004E = N (plain uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase N acute (Ń) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\143";
}
</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 acute (Ń) and the named entity Ń are supported in modern browsers:
👀 Live Preview
See the uppercase N acute (Ń) 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 143 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ń uses the decimal Unicode value 323 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\143 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+0143 sits in Latin Extended-A. Lowercase pair: U+0144 (ń, ń). Prefer the precomposed character over N + combining acute (U+0301). Do not confuse with plain N or Ň (N with caron).
Use Cases
The uppercase N acute (Ń) is commonly used in:
Polish websites, dictionaries, and language resources where Ń is required for correct spelling.
International applications and global platforms displaying accented Latin characters.
Courses and educational content teaching the letter pair Ń/ń in Polish.
Academic papers and reference materials using Latin Extended-A notation.
Font design and creative projects requiring proper accented character representation.
Correct Unicode ensures screen readers handle Ń properly in accented text.
Proper spelling helps search indexing for Polish and multilingual 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
- Document the lowercase pair ń (
ń, U+0144) alongside Ń - Use fonts that support Latin Extended-A for accented text
- Distinguish Ń (acute) from plain
Nand Ň (caron)
Don’t
- Substitute plain
Nwhen Ń is required for correct spelling - Confuse acute Ń with caron Ň or other accented N variants
- Put CSS escape
\143in HTML text nodes - Use
U+00143or CSS\00143—the correct code isU+0143and\143 - 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
\143Unicode U+0143 — LATIN CAPITAL LETTER N WITH ACUTE
Lowercase pair is U+0144 (ń, ń)
Previous: Uppercase N (N) Next: Uppercase N Caron
❓ Frequently Asked Questions
Ń (named), Ń (hex), Ń (decimal), or \143 in CSS content. The named entity Ń is the most readable for HTML content.U+0143 (LATIN CAPITAL LETTER N WITH ACUTE). Latin Extended-A block. Hex 143, decimal 323. Commonly used in Polish and other languages with acute-accented N.Ń. 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
