Latin Capital Letter I With Diaeresis

Ï

Shortcodes

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

Unicode
U+00CF
Alt Code
207
HTML Code
Ï
HTML Entity
Ï
HEX Code
Ï
CSS Code
\00CF
JS/JSON
\u00CF
Unix/C/PHP/JAVA
0xCF
URL-encode
%C3%8F

Customize Latin Capital Letter I With Diaeresis

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

Ï
  

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

Insert in HTML

1. Direct symbol:
<span>Ï</span>
HTML Code:
<span>&#207;</span>
HTML Entity:
<span>&Iuml;</span>
HEX Code:
<span>&#x00CF;</span>

Add with CSS

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

Set it in JavaScript

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