HTML Entity for Uppercase Y Acute (Ý)

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

What You'll Learn

How to display the uppercase Y with acute accent (Ý) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Icelandic and Faroese text, it appears in words such as Ýlir (yew) and Ýmislegt (various). In Czech, Ý is a distinct letter (e.g. Ýdra, yolk). It is U+00DD in the Latin-1 Supplement block.

Render it with Ý, Ý, Ý, or CSS escape \00DD. The named entity Ý is often the most readable option. Do not confuse Ý (Y acute) with plain Y (U+0059) or Ŷ (Y circumflex).

⚡ Quick Reference — Uppercase Y Acute Entity

Unicode U+00DD

Latin-1 Supplement

Hex Code Ý

Hexadecimal reference

HTML Code Ý

Decimal reference

Named Entity Ý

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00DD
Hex code       Ý
HTML code      Ý
Named entity   Ý
CSS code       \00DD
Meaning        Latin capital letter Y with acute
Also known as  Y acute
Related        U+00FD = ý (ý)
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

A simple example showing the uppercase Y acute (Ý) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\00DD";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#xDD;</p>
<p>Symbol (decimal): &#221;</p>
<p>Symbol (named): &Yacute;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase Y acute (Ý) and the named entity &Yacute; are supported in all modern browsers:

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

👀 Live Preview

See the uppercase Y acute (Ý) in Icelandic, Czech, and multilingual contexts:

Large glyphÝ
IcelandicÝlir, Ýmislegt, Ýr
Named entity&Yacute; renders as Ý
Lowercaseý (U+00FD) — &yacute;
Not the same asY (plain)  |  Ŷ (Y circumflex)  |  Ú (U acute)
Numeric refs&#xDD; &#221; &Yacute; \00DD

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

\00DD 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+00DD sits in Latin-1 Supplement. Lowercase equivalent: U+00FD (ý). Do not confuse with plain Y (U+0059) or Ŷ (Y circumflex).

Use Cases

The uppercase Y acute (Ý) is commonly used in:

🇮🇸 Icelandic

Essential in words like Ýlir (yew), Ýmislegt (various), and Ýr (yew branch). A distinct letter in the Icelandic alphabet.

🇫🇮 Faroese

Used in Faroese orthography where Ý represents a distinct vowel sound at the start of words.

🇨🇿 Czech

Ý is a distinct letter in Czech, marking a long vowel (e.g. Ýdra, yolk).

📝 Proper names

Icelandic, Faroese, and Czech place names, surnames, and brands that include Ý must display correctly.

🔤 Education

Language learning apps, dictionaries, and pronunciation guides teaching Nordic and Slavic languages.

🌐 Internationalization

Multilingual websites, forms, and CMS content requiring correct Icelandic, Faroese, or Czech spelling.

🔍 Search & SEO

Correct rendering so users can find content with words containing Ý in their native spelling.

💡 Best Practices

Do

  • Use &Yacute; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Ý directly in UTF-8 source
  • Set lang="is" or lang="cs" on content for correct pronunciation
  • Use fonts that support Latin-1 Supplement characters
  • Distinguish Ý (acute) from plain Y and Ŷ (circumflex)

Don’t

  • Substitute plain Y when Ý is required for correct Icelandic, Faroese, or Czech spelling
  • Confuse Ý (acute) with Ŷ (circumflex) or Ú (U acute)
  • Use the old incorrect CSS escape \000DD—the correct value is \00DD
  • Put CSS escape \00DD in HTML text nodes
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render Ý; named entity is most readable

&#xDD; &#221; &Yacute;
2

For CSS stylesheets, use the escape in the content property

\00DD
3

Unicode U+00DD — LATIN CAPITAL LETTER Y WITH ACUTE

4

Essential for Icelandic, Faroese, and Czech; lowercase is ý (U+00FD, &yacute;)

❓ Frequently Asked Questions

Use &Yacute; (named), &#xDD; (hex), &#221; (decimal), or \00DD in CSS content. All four methods render Ý correctly.
U+00DD (LATIN CAPITAL LETTER Y WITH ACUTE). Latin-1 Supplement block. Hex DD, decimal 221. Used in Icelandic, Faroese, and Czech. Lowercase form is U+00FD (ý) with named entity &yacute;.
For Icelandic and Faroese text, Czech words starting with Ý, language learning sites, internationalized content, and any text requiring correct spelling with this accented letter.
No. Ý (U+00DD) is Y with acute accent (&Yacute;), used in Icelandic, Faroese, and Czech. Y (U+0059) is the plain uppercase letter. They are different characters with different Unicode values.
The named entity &Yacute; is easier to read in hand-written HTML. Numeric codes are useful when generating markup programmatically. All produce the same character Ý.

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