HTML Entity for Lowercase Y Umlaut (ÿ)

What You'll Learn
How to display the lowercase y with diaeresis/umlaut (ÿ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. It appears in French place names such as L'Haÿ-les-Roses and Aÿ-Champagne, and in Dutch and Albanian orthography. It is U+00FF in the Latin-1 Supplement block.
Render it with ÿ, ÿ, ÿ, or CSS escape \00FF. The named entity ÿ is often the most readable option. Do not confuse ÿ (y umlaut) with plain y (U+0079) or ý (y acute, ý).
⚡ Quick Reference — Lowercase Y Umlaut Entity
U+00FFLatin-1 Supplement
ÿHexadecimal reference
ÿDecimal reference
ÿMost readable option
Name Value
──────────── ──────────
Unicode U+00FF
Hex code ÿ
HTML code ÿ
Named entity ÿ
CSS code \00FF
Meaning Latin small letter y with diaeresis
Also known as y umlaut
Related U+0178 = Ÿ (Ÿ)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase y umlaut (ÿ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00FF";
}
</style>
</head>
<body>
<p>Symbol (hex): ÿ</p>
<p>Symbol (decimal): ÿ</p>
<p>Symbol (named): ÿ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase y umlaut (ÿ) and the named entity ÿ are supported in all modern browsers:
👀 Live Preview
See the lowercase y umlaut (ÿ) in French and multilingual contexts:
🧠 How It Works
Hexadecimal Code
ÿ uses the Unicode hexadecimal value FF to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ÿ uses the decimal Unicode value 255 to display the same character. A common method for Latin-1 characters.
Named Entity
ÿ is the standard named entity for ÿ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\00FF is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ÿ. Unicode U+00FF sits in Latin-1 Supplement. Uppercase equivalent: U+0178 (Ÿ, Ÿ). Do not confuse with plain y (U+0079) or ý (y acute).
Use Cases
The lowercase y umlaut (ÿ) is commonly used in:
Place names such as L'Haÿ-les-Roses and Aÿ-Champagne require correct ÿ spelling on maps and websites.
Used in Dutch and Albanian orthography where ÿ represents a distinct sound or spelling convention.
French place names, surnames, and brands that include ÿ must display correctly for accessibility and SEO.
Language learning apps, dictionaries, and pronunciation guides teaching French and European spelling.
Multilingual websites, forms, and CMS content requiring correct European spelling.
Headlines, logos, and styled text requiring correct umlaut/diaeresis spelling.
Correct rendering so users can find French place names containing ÿ.
💡 Best Practices
Do
- Use
ÿin HTML when possible for readability - Serve pages as UTF-8; you can also type ÿ directly in UTF-8 source
- Set
lang="fr"on French content for correct pronunciation - Use fonts that support Latin-1 Supplement characters
- Distinguish ÿ (umlaut) from plain
yand ý (acute)
Don’t
- Substitute plain
ywhen ÿ is required for correct French spelling - Confuse ÿ (umlaut) with ý (acute) or ŷ (circumflex)
- Use
Ÿfor lowercase—that is uppercase Ÿ (U+0178); useÿfor ÿ - Use the old incorrect CSS escape
\000FF—the correct value is\00FF - Put CSS escape
\00FFin HTML text nodes
Key Takeaways
Four references render ÿ; named entity is most readable
ÿ ÿ ÿFor CSS stylesheets, use the escape in the content property
\00FFUnicode U+00FF — LATIN SMALL LETTER Y WITH DIAERESIS
Essential for French place names; uppercase is Ÿ (U+0178, Ÿ)
Previous: Lowercase Y Stroke (ɏ) Next: Lowercase Yogh (ȝ)
❓ Frequently Asked Questions
ÿ (named), ÿ (hex), ÿ (decimal), or \00FF in CSS content. All four methods render ÿ correctly.U+00FF (LATIN SMALL LETTER Y WITH DIAERESIS). Latin-1 Supplement block. Hex FF, decimal 255. Used in French place names and other languages. Uppercase form is U+0178 (Ÿ) with named entity Ÿ.ÿ). ý (U+00FD) is y with acute (ý). They are different characters with different Unicode values.ÿ is easier to read in hand-written HTML. Numeric codes are useful when generating markup programmatically. All produce the same character ÿ.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
