HTML Entity for Lowercase Y Circumflex (ŷ)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+0177

What Is the Lowercase Y Circumflex Entity?

Lowercase y with circumflex (ŷ) is the Latin Extended-A character at Unicode U+0177 (LATIN SMALL LETTER Y WITH CIRCUMFLEX). The circumflex (^) sits above the letter. Common in Welsh (tŷ). HTML5 defines the named entity ŷ.

Remember
Character     ŷ
Unicode       U+0177
Named entity  ŷ
Hex entity    ŷ
Decimal       ŷ
CSS escape    \0177

All of these produce the same glyph: ŷ. Prefer ŷ or a pasted ŷ in UTF-8 pages; use numeric or CSS forms when you need them.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterŷHTML text (UTF-8 default)
Named entityŷHTML markup (readable choice)
Hex entityŷHTML markup
Decimal entityŷHTML markup
CSS escape\0177Stylesheet content

When to Use Which

SituationUse
Welsh / Latin UTF-8 textType or paste ŷ
Readable entity in HTML sourceŷ
Numeric entity requiredŷ or ŷ
Generated text via ::before / ::aftercontent: "\0177"
Plain letter y or y acute (ý)Different characters — see Related Topics

Live Preview

Lowercase y with circumflex rendered in common contexts.

Welsh tŷ
Large glyph ŷ
Case pair Ŷ ŷ
With entities Named: ŷ | Hex: ŷ | Decimal: ŷ
Not the same y (U+0079) · ý (y acute)

Complete HTML Example

One page that shows lowercase y with circumflex with named, hex, decimal, and CSS forms. Use View Output or open the live editor.

Named + Hex + Decimal + CSS

Four ways to produce ŷ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase Y Circumflex (ŷ) in HTML</title>
  <style>
    #point::after {
      content: "\0177";
    }
  </style>
</head>
<body>
  <p>Y Circumflex using Named Entity: &ycirc;</p>
  <p>Y Circumflex using Hex Code: &#x0177;</p>
  <p>Y Circumflex using HTML Code: &#375;</p>
  <p id="point">Y Circumflex using CSS Entity: </p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &ycirc; is the HTML5 named entity for U+0177. Clearest form in HTML source.

2. Hex: U+0177 → &#x0177; in HTML. Same glyph as named.

3. Decimal: same code point as 375 → &#375;. Same result.

4. CSS: use \0177 in content (not an HTML entity). #point::after appends that ŷ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with the y circumflex entity.

Named

Prefer &ycirc;

HTML5 defines a named entity for this letter — use it for readable HTML.

CSS vs HTML

Do not mix escapes

\0177 belongs in CSS. &ycirc; / &#x0177; / &#375; belong in HTML.

Look-alikes

Not y or ý

Plain y is U+0079; y acute is U+00FD. Circumflex is a different diacritic.

Case

ŷ vs Ŷ

Uppercase is U+0176 (&Ycirc;) — a different code point from U+0177.

Semicolon

End references

Always finish with ; — write &ycirc;, not &ycirc.

UTF-8

Declare charset

If you paste ŷ directly, serve the page as UTF-8 with <meta charset="UTF-8">.

Browser Support

Lowercase y with circumflex (U+0177) and its entity forms (&ycirc;, &#x0177;, &#375;, CSS \\0177) are supported in all mainstream browsers.

✓ Universal support

Lowercase Y Circumflex (&#x0177;)

Use &ycirc;, paste ŷ, or encode with hex, decimal, or CSS escape — same glyph everywhere.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+0177 / entities Full support

Bottom line: Prefer &ycirc; or a pasted ŷ in UTF-8 text. Use &#x0177; / &#375; when a numeric form is required, and \\0177 only inside CSS content.

Key Takeaways

  • Unicode: y with circumflex is U+0177 (decimal 375), Latin Extended-A.
  • HTML: prefer &ycirc;, or use &#x0177; / &#375;.
  • CSS: use \0177 inside content for generated text.
  • Use: Welsh and Latin text with ŷ — not the same as plain y or ý.

One line: U+0177 → &ycirc;, or &#x0177; / &#375; / CSS \0177.

Frequently Asked Questions

Use &ycirc; (named), &#x0177; (hex), &#375; (decimal), or the CSS escape \0177 in the content property. All render ŷ. In UTF-8 files you can also type or paste ŷ directly.
U+0177 (LATIN SMALL LETTER Y WITH CIRCUMFLEX). Hex 0177, decimal 375. It belongs to Latin Extended-A and is used especially in Welsh.
Yes. HTML5 defines &ycirc; for this character. You can also use numeric references &#375; or &#x0177;.
Use it for Welsh and other Latin text with ŷ, linguistic examples, CSS-generated content, or when encoding must be explicit. Prefer &ycirc; when you want a readable named form in HTML source.
HTML entities (&ycirc;, &#375;, or &#x0177;) go in markup. The CSS escape \0177 is used in stylesheets (usually in the content property of ::before/::after). Both render ŷ.
Plain y is U+0079. Y with acute ý is U+00FD (&yacute;). Y with circumflex ŷ is U+0177 — a different diacritic. Do not substitute one for another.

Did you know?

Lowercase y with circumflex (ŷ) is Unicode U+0177 (decimal 375) in Latin Extended-A. HTML5 defines the named entity &ycirc; — also usable as &#x0177; or &#375;. Common in Welsh (tŷ, ŷ).

Next: Lowercase Y Macron

Learn the HTML entity for y with macron — the next letter in this entity sequence.

Lowercase Y Macron tutorial →

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