Latin Small Letter I With Acute

í

Shortcodes

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

Unicode
U+00ED
Alt Code
237
HTML Code
í
HTML Entity
í
HEX Code
í
CSS Code
\00ED
JS/JSON
\u00ED
Unix/C/PHP/JAVA
0xED
URL-encode
%C3%AD

Customize Latin Small Letter I With Acute

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

í
  

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

Insert in HTML

1. Direct symbol:
<span>í</span>
HTML Code:
<span>&#237;</span>
HTML Entity:
<span>&iacute;</span>
HEX Code:
<span>&#x00ED;</span>

Add with CSS

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

Set it in JavaScript

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