HTML Entity for Uppercase Y Circumflex (Ŷ)

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

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. ) 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

Unicode U+0176

Latin Extended-A

Hex Code Ŷ

Hexadecimal reference

HTML Code Ŷ

Decimal reference

Named Entity Ŷ

Most readable option

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0176";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0176;</p>
<p>Symbol (decimal): &#374;</p>
<p>Symbol (named): &Ycirc;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase Y circumflex (Ŷ) and the named entity &Ycirc; are supported in all modern browsers:

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

👀 Live Preview

See the uppercase Y circumflex (Ŷ) in Welsh and multilingual contexts:

Large glyphŶ
Welsh (uppercase)TŶ, YŶ, CŶ
Welsh (mixed case)tŷ, yŷ, cŷ
Named entity&Ycirc; renders as Ŷ
Lowercaseŷ (U+0177) — &ycirc;
Not the same asY (plain)  |  Ý (Y acute)  |  Ÿ (Y diaeresis)
Numeric refs&#x0176; &#374; &Ycirc; \0176

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#374; uses the decimal Unicode value 374 to display the same character. A common method for Latin Extended-A characters.

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

\0176 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+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:

🇬🇧 Welsh

Capital form when uppercasing words like tŷ → TŶ, yŷ → YŶ, and cŷ → CŶ. Essential for correct Welsh all-caps text.

📝 Proper names

Welsh place names, surnames, and brands that uppercase words containing ŷ must use Ŷ for the circumflexed Y.

🔤 Education

Welsh language courses, dictionaries, and learning materials teaching the circumflexed Y in both cases.

🌐 Internationalization

Multilingual websites, forms, and CMS content requiring correct Welsh capitalization and typography.

📄 Headings & titles

Page titles, section headings, and navigation labels in Welsh that use the circumflexed Y in uppercase.

♿ Accessibility

Using the correct character with lang="cy" helps assistive technologies pronounce Welsh text correctly.

⚙ Programmatic HTML

When building HTML from Welsh data, using &Ycirc; or &#374; guarantees correct output.

💡 Best Practices

Do

  • Use &Ycirc; 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 ŷ (&ycirc;) when both cases appear in Welsh text

Don’t

  • Substitute plain Y when Ŷ 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 \0176 in HTML text nodes
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render Ŷ; named entity is most readable

&#x0176; &#374; &Ycirc;
2

For CSS stylesheets, use the escape in the content property

\0176
3

Unicode U+0176 — LATIN CAPITAL LETTER Y WITH CIRCUMFLEX

4

Essential for Welsh; lowercase is ŷ (U+0177, &ycirc;)

❓ Frequently Asked Questions

Use &Ycirc; (named), &#x0176; (hex), &#374; (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 &ycirc;.
For Welsh text in uppercase (e.g. TŶ from tŷ), Welsh language sites, headlines, proper nouns, and any text requiring correct Welsh spelling with the capital circumflexed Y.
No. Ŷ (U+0176) is Y with circumflex (&Ycirc;), a distinct letter in Welsh. Plain Y (U+0059) has no accent. In Welsh, using the wrong character changes spelling.
The named entity &Ycirc; 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.

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