HTML Entity for Uppercase I Acute (Í)

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

What You'll Learn

How to display the uppercase I with acute accent (Í) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00CD in the Latin-1 Supplement block and is essential for Spanish, Portuguese, Catalan, and other languages.

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

⚡ Quick Reference — Uppercase I Acute Entity

Unicode U+00CD

Latin-1 Supplement

Hex Code Í

Hexadecimal reference

HTML Code Í

Decimal reference

Named Entity Í

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00CD
Hex code       Í
HTML code      Í
Named entity   Í
CSS code       \CD
Meaning        Latin capital letter I with acute
Related        U+00ED = í (lowercase)
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\CD";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#xCD;</p>
<p>Symbol (decimal): &#205;</p>
<p>Symbol (named): &Iacute;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase I acute (Í) and the named entity &Iacute; are universally supported in modern browsers:

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

👀 Live Preview

See the uppercase I acute (Í) in language and content contexts:

Large glyphÍ
SpanishÍndice, Índigo
PortugueseÍndice, Índia
Named entity&Iacute; renders as Í
Numeric refs&#xCD; &#205; &Iacute; \CD

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&Iacute; is the standard named entity for Í—readable in source HTML and part of the HTML Latin-1 entity set.

HTML markup
4

CSS Entity

\CD 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+00CD sits in Latin-1 Supplement. Lowercase equivalent: U+00ED (&iacute;). Do not confuse with plain I (U+0049).

Use Cases

The uppercase I acute (Í) is commonly used in:

🇬🇧 Spanish

Essential in words like Índice and Índigo where I starts with an acute accent.

🇧🇷 Portuguese & Catalan

Used in proper names and words in Portuguese and Catalan text requiring correct orthography.

🌐 Internationalization

Websites and apps serving Spanish-, Portuguese-, or Catalan-speaking audiences.

📝 Proper names

Names of people, cities, and brands that start with or include Í.

🔤 Linguistics

Language learning apps, dictionaries, and phonetic content.

📄 Publishing

Legal, academic, and editorial content in Romance and other languages.

🔍 Search & SEO

Correct rendering so users can find content with proper accented spelling.

💡 Best Practices

Do

  • Use &Iacute; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Í directly in UTF-8 source
  • Set lang attributes (e.g. lang="es") for correct pronunciation
  • Use fonts that support Latin-1 Supplement characters
  • Distinguish Í (U+00CD) from plain I (U+0049)—meaning can change in proper names

Don’t

  • Substitute plain I when Í is required for correct spelling
  • Confuse Í with Ì (I grave) or other I variants
  • Put CSS escape \CD in HTML text nodes
  • Assume all fonts render accented Latin-1 glyphs identically
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render Í; named entity is most readable

&#xCD; &#205; &Iacute;
2

For CSS stylesheets, use the escape in the content property

\CD
3

Unicode U+00CD — LATIN CAPITAL LETTER I WITH ACUTE

4

Essential for Spanish, Portuguese, Catalan, and i18n content

❓ Frequently Asked Questions

Use &Iacute; (named), &#xCD; (hex), &#205; (decimal), or \CD in CSS content. The named entity &Iacute; is the most readable for HTML content.
U+00CD (LATIN CAPITAL LETTER I WITH ACUTE). Latin-1 Supplement block. Hex CD, decimal 205. Used in Spanish, Portuguese, Catalan, and other languages.
When writing Spanish words (e.g. Índice, Índigo), Portuguese and Catalan text, proper names, multilingual websites, and any content requiring the I with acute accent.
HTML code (&#205; or &#xCD;) or the named entity &Iacute; is used in HTML content. The CSS entity (\CD) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Í but in different contexts.
Yes. The named HTML entity is &Iacute;. It is part of the standard HTML Latin-1 entity set and is well supported. You can also use &#205; or &#xCD; for numeric references.

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