HTML Entity for Uppercase I Acute (Í)

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
U+00CDLatin-1 Supplement
ÍHexadecimal reference
ÍDecimal reference
ÍMost readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\CD";
}
</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 I acute (Í) and the named entity Í are universally supported in modern browsers:
👀 Live Preview
See the uppercase I acute (Í) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Í uses the Unicode hexadecimal value CD to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Í uses the decimal Unicode value 205 to display the same character. A common method for Latin-1 characters.
Named Entity
Í is the standard named entity for Í—readable in source HTML and part of the HTML Latin-1 entity set.
CSS Entity
\CD 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+00CD sits in Latin-1 Supplement. Lowercase equivalent: U+00ED (í). Do not confuse with plain I (U+0049).
Use Cases
The uppercase I acute (Í) is commonly used in:
Essential in words like Índice and Índigo where I starts with an acute accent.
Used in proper names and words in Portuguese and Catalan text requiring correct orthography.
Websites and apps serving Spanish-, Portuguese-, or Catalan-speaking audiences.
Names of people, cities, and brands that start with or include Í.
Language learning apps, dictionaries, and phonetic content.
Legal, academic, and editorial content in Romance and other languages.
Correct rendering so users can find content with proper accented spelling.
💡 Best Practices
Do
- Use
Íin HTML when possible for readability - Serve pages as UTF-8; you can also type Í directly in UTF-8 source
- Set
langattributes (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
Iwhen Í is required for correct spelling - Confuse Í with Ì (I grave) or other I variants
- Put CSS escape
\CDin HTML text nodes - Assume all fonts render accented Latin-1 glyphs identically
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render Í; named entity is most readable
Í Í ÍFor CSS stylesheets, use the escape in the content property
\CDUnicode U+00CD — LATIN CAPITAL LETTER I WITH ACUTE
Essential for Spanish, Portuguese, Catalan, and i18n content
Previous: Uppercase I Next: Uppercase I Black Letter Capital
❓ Frequently Asked Questions
Í (named), Í (hex), Í (decimal), or \CD in CSS content. The named entity Í 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.Í or Í) or the named entity Í 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.Í. It is part of the standard HTML Latin-1 entity set and is well supported. You can also use Í or Í for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
