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.
Reference
Quick Reference
One table for every form you will actually use.
Form
Code
Where 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
\0177
Stylesheet content
When to Use Which
Situation
Use
Welsh / Latin UTF-8 text
Type or paste ŷ
Readable entity in HTML source
ŷ
Numeric entity required
ŷ or ŷ
Generated text via ::before / ::after
content: "\0177"
Plain letter y or y acute (ý)
Different characters — see Related Topics
See it
Live Preview
Lowercase y with circumflex rendered in common contexts.
Welshtŷ
Large glyphŷ
Case pairŶ ŷ
With entitiesNamed: ŷ | Hex: ŷ | Decimal: ŷ
Not the samey (U+0079) · ý (y acute)
Code
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: ŷ</p>
<p>Y Circumflex using Hex Code: ŷ</p>
<p>Y Circumflex using HTML Code: ŷ</p>
<p id="point">Y Circumflex using CSS Entity: </p>
</body>
</html>
Y Circumflex using Named Entity: ŷ
Y Circumflex using Hex Code: ŷ
Y Circumflex using HTML Code: ŷ
Y Circumflex using CSS Entity: ŷ
How It Works
1. Named:ŷ is the HTML5 named entity for U+0177. Clearest form in HTML source.
2. Hex:U+0177 → ŷ in HTML. Same glyph as named.
3. Decimal: same code point as 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 ŷ
HTML5 defines a named entity for this letter — use it for readable HTML.
CSS vs HTML
Do not mix escapes
\0177 belongs in CSS. ŷ / ŷ / ŷ 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 (Ŷ) — a different code point from U+0177.
Semicolon
End references
Always finish with ; — write ŷ, not &ycirc.
UTF-8
Declare charset
If you paste ŷ directly, serve the page as UTF-8 with <meta charset="UTF-8">.
Compatibility
Browser Support
Lowercase y with circumflex (U+0177) and its entity forms (ŷ, ŷ, ŷ, CSS \\0177) are supported in all mainstream browsers.
✓ Universal support
Lowercase Y Circumflex (ŷ)
Use ŷ, paste ŷ, or encode with hex, decimal, or CSS escape — same glyph everywhere.
100%Browser coverage
Google ChromeSupported
Yes
Microsoft EdgeSupported
Yes
Mozilla FirefoxSupported
Yes
Apple SafariSupported
Yes
OperaSupported
Yes
Internet ExplorerAll versions
Yes
U+0177 / entitiesFull support
Bottom line: Prefer ŷ or a pasted ŷ in UTF-8 text. Use ŷ / ŷ when a numeric form is required, and \\0177 only inside CSS content.
Remember
Key Takeaways
Unicode: y with circumflex is U+0177 (decimal 375), Latin Extended-A.
HTML: prefer ŷ, or use ŷ / ŷ.
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 → ŷ, or ŷ / ŷ / CSS \0177.
Frequently Asked Questions
Use ŷ (named), ŷ (hex), ŷ (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 ŷ for this character. You can also use numeric references ŷ or ŷ.
Use it for Welsh and other Latin text with ŷ, linguistic examples, CSS-generated content, or when encoding must be explicit. Prefer ŷ when you want a readable named form in HTML source.
HTML entities (ŷ, ŷ, or ŷ) 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 (ý). 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 ŷ — also usable as ŷ or ŷ. Common in Welsh (tŷ, ŷ).