Latin Small Letter I With Diaeresis

ï

Shortcodes

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

Unicode
U+00EF
Alt Code
239
HTML Code
ï
HTML Entity
ï
HEX Code
ï
CSS Code
\00EF
JS/JSON
\u00EF
Unix/C/PHP/JAVA
0xEF
URL-encode
%C3%AF

Customize Latin Small Letter I With Diaeresis

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

ï
  

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

Insert in HTML

1. Direct symbol:
<span>ï</span>
HTML Code:
<span>&#239;</span>
HTML Entity:
<span>&iuml;</span>
HEX Code:
<span>&#x00EF;</span>

Add with CSS

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

Set it in JavaScript

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