HTML Entity for Lowercase Y Circumflex (ŷ)

What You'll Learn
How to display the lowercase y with circumflex (ŷ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This letter is essential in Welsh orthography, where ŷ represents a distinct vowel sound. It appears in words such as tŷ (house), yŷ (houses), and cŷ (dogs). It is U+0177 in the Latin Extended-A block.
Render it with ŷ, ŷ, ŷ, or CSS escape \0177. The named entity ŷ is often the most readable option. Do not confuse ŷ (y circumflex) with plain y (U+0079) or ý (y acute, ý).
⚡ Quick Reference — Lowercase Y Circumflex Entity
U+0177Latin Extended-A
ŷHexadecimal reference
ŷDecimal reference
ŷMost readable option
Name Value
──────────── ──────────
Unicode U+0177
Hex code ŷ
HTML code ŷ
Named entity ŷ
CSS code \0177
Meaning Latin small letter y with circumflex
Also known as y circumflex
Related U+0176 = Ŷ (Ŷ)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase y circumflex (ŷ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0177";
}
</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 circumflex (ŷ) and the named entity ŷ are supported in all modern browsers:
👀 Live Preview
See the lowercase y circumflex (ŷ) in Welsh and multilingual contexts:
🧠 How It Works
Hexadecimal Code
ŷ uses the Unicode hexadecimal value 0177 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ŷ uses the decimal Unicode value 375 to display the same character. A common method for Latin Extended-A characters.
Named Entity
ŷ is the standard named entity for ŷ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\0177 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+0177 sits in Latin Extended-A. Uppercase equivalent: U+0176 (Ŷ). Do not confuse with plain y (U+0079) or ý (y acute).
Use Cases
The lowercase y circumflex (ŷ) is commonly used in:
Essential in words like tŷ (house), yŷ (houses), and cŷ (dogs). A distinct letter in Welsh orthography.
Welsh place names, surnames, and brands that include ŷ must display correctly on the web.
Language learning apps, dictionaries, and pronunciation guides teaching Welsh.
Multilingual websites, forms, and CMS content requiring correct Welsh spelling.
Academic papers and linguistic resources documenting Welsh and related orthographies.
Headlines, logos, and styled text in Welsh requiring correct circumflex spelling.
Correct rendering so users can find Welsh content with words 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="cy"on Welsh content for correct pronunciation - Use fonts that support Latin Extended-A characters
- Distinguish ŷ (circumflex) from plain
yand ý (acute)
Don’t
- Substitute plain
ywhen ŷ is required for correct Welsh spelling - Confuse ŷ (circumflex) with ý (acute) or ŵ (w circumflex)
- Use the old incorrect CSS escape
\00177—the correct value is\0177 - Put CSS escape
\0177in HTML text nodes - Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render ŷ; named entity is most readable
ŷ ŷ ŷFor CSS stylesheets, use the escape in the content property
\0177Unicode U+0177 — LATIN SMALL LETTER Y WITH CIRCUMFLEX
Essential for Welsh; uppercase is Ŷ (U+0176, Ŷ)
Previous: Lowercase Y Acute (ý) Next: Lowercase Y Macron (ȳ)
❓ Frequently Asked Questions
ŷ (named), ŷ (hex), ŷ (decimal), or \0177 in CSS content. All four methods render ŷ correctly.U+0177 (LATIN SMALL LETTER Y WITH CIRCUMFLEX). Latin Extended-A block. Hex 0177, decimal 375. Used in Welsh and other languages. Uppercase form is U+0176 (Ŷ) with named entity Ŷ.ŷ), used in Welsh. ý (U+00FD) is y with acute (ý), used in Icelandic and Faroese. 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
