HTML Entity for Uppercase I Umlaut (Ï)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+00CF

What You'll Learn

How to display the uppercase I with diaeresis/umlaut (Ï) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Used in French and Dutch, it appears in capitalized words such as HAÏTI (Haiti), NAÏVE, and COÏNCIDENCE, indicating that the vowel is pronounced separately from the preceding letter. It is U+00CF in the Latin-1 Supplement block.

Render it with Ï, Ï, Ï, or CSS escape \00CF. The named entity Ï is often the most readable option in HTML source.

⚡ Quick Reference — Uppercase I Umlaut Entity

Unicode U+00CF

Latin-1 Supplement

Hex Code Ï

Hexadecimal reference

HTML Code Ï

Decimal reference

Named Entity Ï

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00CF
Hex code       Ï
HTML code      Ï
Named entity   Ï
CSS code       \00CF
Meaning        Latin capital letter I with diaeresis
Also known as  I umlaut
Related        U+00EF = ï (lowercase)
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

A simple example showing the uppercase I umlaut (Ï) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\00CF";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#xCF;</p>
<p>Symbol (decimal): &#207;</p>
<p>Symbol (named): &Iuml;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase I umlaut (Ï) and the named entity &Iuml; are supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase I umlaut (Ï) in French and Dutch contexts:

Large glyphÏ
FrenchHAÏTI, NAÏVE, COÏNCIDENCE, ANAÏS
Case pairÏ (U+00CF) / ï (U+00EF, &iuml;)
Named entity&Iuml; renders as Ï
Not the same asI (plain)  |  Í (acute)  |  Ĩ (tilde)
Numeric refs&#xCF; &#207; &Iuml; \00CF

🧠 How It Works

1

Named Entity

&Iuml; is the standard named entity for Ï—readable in source HTML and part of the HTML5 entity set.

HTML markup
2

Hexadecimal Code

&#xCF; uses the Unicode hexadecimal value CF to display the character. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#207; uses the decimal Unicode value 207 to display the same character. One of the most commonly used methods in HTML.

HTML markup
4

CSS Entity

\00CF is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ï. Unicode U+00CF sits in Latin-1 Supplement. It decomposes to I (U+0049) + combining diaeresis (U+0308). Lowercase equivalent: U+00EF (&iuml;). Do not confuse with plain I, Í (acute), or Ĩ (tilde).

Use Cases

The uppercase I umlaut (Ï) is commonly used in:

🇫🇷 French

All-caps text and headings (e.g. HAÏTI, NAÏVE, COÏNCIDENCE) with correct diaeresis spelling.

🇳🇱 Dutch

Capitalized Dutch words where the diaeresis marks a vowel break in all-caps display.

📚 Language learning

Dictionaries, vocabulary apps, and pronunciation guides for French and Dutch.

📝 Names & branding

Proper spelling of capitalized names (e.g. ANAÏS) and brands that use Ï in their spelling.

🌐 Internationalization

Websites and apps targeting French-speaking and Dutch-speaking audiences.

📄 Publishing

Books, articles, and editorial content with foreign words like NAÏVE in all-caps headings.

♿ Accessibility

Accurate diacritics help screen readers pronounce words correctly.

💡 Best Practices

Do

  • Use &Iuml; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Ï directly in UTF-8 source
  • Set lang="fr" or lang="nl" on relevant content
  • Use fonts that support Latin-1 Supplement characters
  • Distinguish Ï (umlaut) from plain I, Í (acute), and Ĩ (tilde)

Don’t

  • Substitute plain I when Ï is required for correct spelling
  • Confuse Ï (umlaut) with Í (acute) or other accented I variants
  • Put CSS escape \00CF in HTML text nodes
  • Use padded Unicode notation like U+000CF—the correct value is U+00CF
  • Use \000CF in CSS—the correct escape is \00CF

Key Takeaways

1

Four references render Ï; named entity is most readable

&#xCF; &#207; &Iuml;
2

For CSS stylesheets, use the escape in the content property

\00CF
3

Unicode U+00CF — LATIN CAPITAL LETTER I WITH DIAERESIS

4

Essential for French, Dutch, and internationalized web content

❓ Frequently Asked Questions

Use &Iuml; (named), &#xCF; (hex), &#207; (decimal), or \00CF in CSS content. All four methods render Ï correctly.
U+00CF (LATIN CAPITAL LETTER I WITH DIAERESIS). Latin-1 Supplement block. Hex CF, decimal 207. Used in French, Dutch, and other languages.
For French words and names in all-caps (e.g. HAÏTI, NAÏVE, ANAÏS), Dutch text, language learning sites, internationalized content, and any text requiring correct spelling with this character.
HTML code (&#207; or &#xCF;) or the named entity &Iuml; is used in HTML content. The CSS entity (\00CF) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ï but in different contexts.
Yes. The named HTML entity is &Iuml;. It is part of the standard HTML5 entity set and is well supported. You can also use &#207; or &#xCF; for numeric references.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful