HTML Entity for Uppercase Y Circumflex (Ŷ)

What You'll Learn
How to display the uppercase Y with circumflex (Ŷ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This letter is essential in Welsh orthography as the capital form of ŷ, used when words containing ŷ are fully uppercased (e.g. tŷ → TŶ) or when ŷ appears at the start of a capitalized word. It is U+0176 in the Latin Extended-A block.
Render it with Ŷ, Ŷ, Ŷ, or CSS escape \0176. The named entity Ŷ is often the most readable option. Do not confuse Ŷ (Y circumflex) with plain Y (U+0059) or Ÿ (Y diaeresis, Ÿ).
⚡ Quick Reference — Uppercase Y Circumflex Entity
U+0176Latin Extended-A
ŶHexadecimal reference
ŶDecimal reference
ŶMost readable option
Name Value
──────────── ──────────
Unicode U+0176
Hex code Ŷ
HTML code Ŷ
Named entity Ŷ
CSS code \0176
Meaning Latin capital letter Y with circumflex
Also known as Y circumflex
Related U+0177 = ŷ (ŷ)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase Y circumflex (Ŷ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0176";
}
</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 uppercase Y circumflex (Ŷ) and the named entity Ŷ are supported in all modern browsers:
👀 Live Preview
See the uppercase Y circumflex (Ŷ) in Welsh and multilingual contexts:
🧠 How It Works
Hexadecimal Code
Ŷ uses the Unicode hexadecimal value 0176 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ŷ uses the decimal Unicode value 374 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
\0176 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+0176 sits in Latin Extended-A. Lowercase equivalent: U+0177 (ŷ). Do not confuse with plain Y (U+0059) or Ÿ (Y diaeresis).
Use Cases
The uppercase Y circumflex (Ŷ) is commonly used in:
Capital form when uppercasing words like tŷ → TŶ, yŷ → YŶ, and cŷ → CŶ. Essential for correct Welsh all-caps text.
Welsh place names, surnames, and brands that uppercase words containing ŷ must use Ŷ for the circumflexed Y.
Welsh language courses, dictionaries, and learning materials teaching the circumflexed Y in both cases.
Multilingual websites, forms, and CMS content requiring correct Welsh capitalization and typography.
Page titles, section headings, and navigation labels in Welsh that use the circumflexed Y in uppercase.
Using the correct character with lang="cy" helps assistive technologies pronounce Welsh text correctly.
When building HTML from Welsh data, using Ŷ or Ŷ guarantees correct output.
💡 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 and SEO - Use fonts that support Latin Extended-A characters
- Pair with lowercase ŷ (
ŷ) when both cases appear in Welsh text
Don’t
- Substitute plain
Ywhen Ŷ is required for correct Welsh spelling in uppercase - Confuse Ŷ (circumflex) with Ý (Y acute) or Ÿ (Y diaeresis)
- Use the incorrect CSS escape
\00176—the correct value is\0176 - Put CSS escape
\0176in 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
\0176Unicode U+0176 — LATIN CAPITAL LETTER Y WITH CIRCUMFLEX
Essential for Welsh; lowercase is ŷ (U+0177, ŷ)
Previous: Uppercase Y Acute (Ý) Next: Uppercase Y Diaeresis (Ÿ)
❓ Frequently Asked Questions
Ŷ (named), Ŷ (hex), Ŷ (decimal), or \0176 in CSS content. All four methods render Ŷ correctly.U+0176 (LATIN CAPITAL LETTER Y WITH CIRCUMFLEX). Latin Extended-A block. Hex 0176, decimal 374. Used primarily in Welsh. Lowercase form is U+0177 (ŷ) with named entity ŷ.Ŷ), a distinct letter in Welsh. Plain Y (U+0059) has no accent. In Welsh, using the wrong character changes spelling.Ŷ 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
