Latin Capital Letter I With Acute

Í

Shortcodes

Copy useful codes for latin capital letter i with acute symbol Í to use in websites, apps, blogs, and docs.

Unicode
U+00CD
Alt Code
205
HTML Code
Í
HTML Entity
Í
HEX Code
Í
CSS Code
\00CD
JS/JSON
\u00CD
Unix/C/PHP/JAVA
0xCD
URL-encode
%C3%8D

Customize Latin Capital Letter I With Acute

Customize Í, download it as SVG or PNG, or copy the generated HTML snippet.

Í
  

How to use Latin Capital Letter I With Acute Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Í</span>
HTML Code:
<span>&#205;</span>
HTML Entity:
<span>&Iacute;</span>
HEX Code:
<span>&#x00CD;</span>

Add with CSS

.latin-capital-letter-i-with-acute::before {
  content: '\\00CD';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-i-with-acute').textContent = 'Í';
copied