HTML Entity for Uppercase N Tilde (Ñ)

What You'll Learn
How to display the uppercase N with tilde (Ñ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00D1 in the Latin-1 Supplement block. It is the capital form of ñ and is essential for correct Spanish spelling in words like España and Niño, as well as Galician, Filipino, and other languages.
Render it with Ñ, Ñ, Ñ, or CSS escape \00D1. The named entity Ñ is one of the most widely recognized HTML entities for accented characters.
⚡ Quick Reference — Uppercase N Tilde Entity
U+00D1Latin-1 Supplement
ÑHexadecimal reference
ÑDecimal reference
ÑMost readable option
Name Value
──────────── ──────────
Unicode U+00D1
Hex code Ñ
HTML code Ñ
Named entity Ñ
CSS code \00D1
Meaning Latin capital letter N with tilde
Related U+00F1 = ñ (lowercase)
U+004E = N (plain uppercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase N tilde (Ñ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00D1";
}
</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 tilde (Ñ) and the named entity Ñ are supported in all modern browsers:
👀 Live Preview
See the uppercase N tilde (Ñ) in language and content contexts:
🧠 How It Works
Named Entity
Ñ is the standard named entity for Ñ—readable in source HTML and part of the HTML5 entity set for Latin-1 accented letters.
Hexadecimal Code
Ñ uses the Unicode hexadecimal value 00D1 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ñ uses the decimal Unicode value 209 to display the same character. A common method when a numeric reference is needed.
CSS Entity
\00D1 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+00D1 sits in Latin-1 Supplement. Lowercase pair: U+00F1 (ñ, ñ). Do not confuse with plain N, Ɲ (N left hook), or Ň (N caron).
Use Cases
The uppercase N tilde (Ñ) is commonly used in:
Essential for correct Spanish spelling at word beginnings and in all-caps text (España, Niño, Señor).
International applications and global platforms displaying Spanish, Galician, Filipino, and related orthographies.
Localized UI, CMS content, and translation systems requiring proper accented capital letters.
Educational websites and courses teaching Spanish pronunciation and orthography.
When building HTML from CMS or translation data, using Ñ or Ñ guarantees correct output.
Correct Unicode with proper lang attributes ensures assistive technologies pronounce content correctly.
Proper spelling helps search indexing for Spanish-language content and geographic names.
💡 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+00F1) - Set
lang="es"(or appropriate language) on Spanish content - Distinguish Ñ (n tilde) from plain
Nand Ɲ (N left hook)
Don’t
- Substitute plain
Nwhen Ñ is required for correct Spanish spelling - Confuse Ñ (n tilde) with Ɲ (N left hook) or Ň (N caron)
- Put CSS escape
\00D1in HTML text nodes - Use
U+000D1or CSS\000D1—the correct code isU+00D1and\00D1 - Omit
langattributes on pages with Spanish or multilingual content
Key Takeaways
The named entity is the most familiar form
ÑNumeric alternatives: hex and decimal
Ñ ÑUnicode U+00D1 — LATIN CAPITAL LETTER N WITH TILDE
Essential for Spanish; lowercase pair is ñ (ñ)
Previous: Uppercase N Left Hook (Ɲ) Next: Uppercase NJ
❓ Frequently Asked Questions
Ñ (named), Ñ (hex), Ñ (decimal), or \00D1 in CSS content. In UTF-8 you can also type Ñ directly.U+00D1 (LATIN CAPITAL LETTER N WITH TILDE). Latin-1 Supplement block. Hex 00D1, decimal 209. Used in Spanish (España), Galician, Filipino, and other languages. Lowercase form is U+00F1 (ñ).Ñ. You can also use Ñ or Ñ, or the CSS entity \00D1. It is part of the HTML5 standard and supported in all modern browsers.Ñ). Ɲ (U+019D) is N with a left hook, used in IPA and African orthographies. They are distinct Unicode characters with different pronunciations and usage contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
