HTML Entity for Lowercase I Umlaut (ï)

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

What You'll Learn

How to display the lowercase i with diaeresis/umlaut (ï) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Used in French and Dutch, it appears in words such as naïf, coïncidence, and geïnteresseerd, indicating that the vowel is pronounced separately from the preceding letter. It is U+00EF in the Latin-1 Supplement block.

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

⚡ Quick Reference — Lowercase I Umlaut Entity

Unicode U+00EF

Latin-1 Supplement

Hex Code ï

Hexadecimal reference

HTML Code ï

Decimal reference

Named Entity ï

Most readable option

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

Complete HTML Example

A simple example showing the lowercase 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: "\00EF";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#xEF;</p>
<p>Symbol (decimal): &#239;</p>
<p>Symbol (named): &iuml;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase 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 lowercase i umlaut (ï) in French and Dutch contexts:

Large glyphï
Frenchnaïf, coïncidence, maïs, Anaïs
Dutchgeïnteresseerd
Named entity&iuml; renders as ï
Not the same asplain i (U+0069) or í (acute)
Numeric refs&#xEF; &#239; &iuml; \00EF

🧠 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

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

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\00EF 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+00EF sits in Latin-1 Supplement. It decomposes to i (U+0069) + combining diaeresis (U+0308). Uppercase equivalent: U+00CF (&Iuml;). Do not confuse with plain i, í (acute), or Ï (uppercase).

Use Cases

The lowercase i umlaut (ï) is commonly used in:

🇫🇷 French

Correct spelling of French words (e.g. naïf, coïncidence, maïs, aïeul).

🇳🇱 Dutch

Used in Dutch to indicate a vowel break, e.g. geïnteresseerd (interested).

📚 Language Learning

Vocabulary, pronunciation guides, and bilingual content for French and Dutch.

📝 Names & Branding

Proper spelling of names (e.g. Anaïs) and brands that use ï in their spelling.

🌐 Internationalization

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

📄 Publishing

Books, articles, and editorial content with foreign words like naïve.

♿ 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 Ï (uppercase)

Don’t

  • Substitute plain i when ï is required for correct spelling
  • Confuse ï (umlaut) with í (acute) or other accented i variants
  • Put CSS escape \00EF in HTML text nodes
  • Assume all fonts render Latin-1 glyphs identically
  • Mix entity styles randomly in one file

Key Takeaways

1

Four references render ï; named entity is most readable

&#xEF; &#239; &iuml;
2

For CSS stylesheets, use the escape in the content property

\00EF
3

Unicode U+00EF — LATIN SMALL LETTER I WITH DIAERESIS

4

Essential for French, Dutch, and internationalized web content

❓ Frequently Asked Questions

The named HTML entity is &iuml;. You can also use &#239; (decimal) or &#xEF; (hex).
U+00EF (LATIN SMALL LETTER I WITH DIAERESIS). Latin-1 Supplement block. Hex EF, decimal 239.
Yes—if your document is UTF-8. Entities are useful when you want an explicit, portable character reference.
For ï the two dots are technically a diaeresis (vowel separate from the previous letter). In typography “umlaut” is often used for the same symbol; the Unicode name is “i with diaeresis.”
In French (naïf, coïncidence), Dutch (geïnteresseerd), proper names like Anaïs, and words such as naïve borrowed into English.

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