HTML Entity for Uppercase Y Macron (Ȳ)

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

What You'll Learn

How to display the uppercase y with macron (Ȳ) in HTML using hexadecimal, decimal, and CSS escape methods. The macron (¯) above Y marks a long vowel in linguistic and academic notation. It is U+0232 in the Latin Extended-B block. It appears in phonetic transcriptions, specialized orthographies (including Livonian), and historical linguistic texts.

Render it with Ȳ, Ȳ, or CSS escape \0232. There is no named HTML entity for this character. In UTF-8 documents you can also type Ȳ directly. Do not confuse Ȳ with plain Y (U+0059), Ý (Y acute), Ŷ (Y circumflex), or Ÿ (Y diaeresis).

⚡ Quick Reference — Uppercase Y Macron Entity

Unicode U+0232

Latin Extended-B

Hex Code Ȳ

Hexadecimal reference

HTML Code Ȳ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0232
Hex code       Ȳ
HTML code      Ȳ
Named entity   (none)
CSS code       \0232
Meaning        Latin capital letter y with macron
Also known as  Y macron
Related        U+0233 = ȳ (lowercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase y macron (Ȳ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0232";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0232;</p>
<p>Symbol (decimal): &#562;</p>
<p>Symbol (direct): Ȳ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase y macron (Ȳ) is supported in all modern browsers as part of Latin Extended-B:

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

👀 Live Preview

See the uppercase y macron (Ȳ) in linguistic and academic contexts:

Large glyphȲ
LinguisticLong vowel notation: [Ȳ] vs short [Y]
Unicode nameLatin capital letter y with macron
Lowercaseȳ (U+0233) — Latin small letter y with macron
Not the same asY (plain)  |  Ý (acute)  |  Ŷ (circumflex)  |  Ÿ (diaeresis)
Numeric refs&#x0232; &#562; \0232

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Direct Character

Type Ȳ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this macron letter.

HTML markup
4

CSS Entity

\0232 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods produce the glyph: Ȳ. Unicode U+0232 sits in Latin Extended-B. The macron marks a long vowel—do not confuse with plain Y (U+0059), Ý (acute), Ŷ (circumflex), or Ÿ (diaeresis).

Use Cases

The uppercase y macron (Ȳ) is commonly used in:

🔤 Linguistics

Phonetic transcriptions and linguistic notation marking a long Y vowel (e.g. [Ȳ] vs short [Y]).

📚 Academic writing

Scholarly papers, dictionaries, and language studies requiring correct macron vowel notation.

📝 Historical texts

Digitized texts in orthographies that use Ȳ for long vowel sounds, such as Livonian.

📄 Publishing

Books, journals, and reference works on phonology and historical linguistics.

🌐 Internationalization

Specialized multilingual content requiring accurate rendering of macron-accented letters.

🎨 Typography

Font specimens and character-set documentation for Latin Extended-B support.

⚙ Programmatic HTML

When building HTML from linguistic data, using &#562; or &#x0232; guarantees correct output.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type Ȳ directly in UTF-8 source
  • Use numeric references (&#x0232; or &#562;) when escaping is required
  • Use \0232 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B (U+0180–U+024F)
  • Distinguish Ȳ (macron) from plain Y, Ý (acute), Ŷ (circumflex), and Ÿ (diaeresis)

Don’t

  • Substitute plain Y or Y + combining macron when Ȳ is required
  • Confuse Ȳ (macron) with Ý (acute), Ŷ (circumflex), or Ÿ (diaeresis)
  • Use the old incorrect CSS escape \00232—the correct value is \0232
  • Expect a named HTML entity—none exists for Ȳ
  • Put CSS escape \0232 in HTML text nodes

Key Takeaways

1

Type Ȳ directly, or use hex/decimal references

&#x0232; &#562;
2

For CSS stylesheets, use the escape in the content property

\0232
3

Unicode U+0232 — LATIN CAPITAL LETTER Y WITH MACRON

4

Macron marks long vowel; lowercase is ȳ (U+0233)

❓ Frequently Asked Questions

Use &#x0232; (hex), &#562; (decimal), or \0232 in CSS content. There is no named HTML entity for Ȳ. In UTF-8 you can also type Ȳ directly.
U+0232 (LATIN CAPITAL LETTER Y WITH MACRON). Latin Extended-B block. Hex 0232, decimal 562. Used in linguistic notation and specialized orthographies. Lowercase form is U+0233 (ȳ).
For linguistic transcriptions, academic writing marking long vowels, historical texts, and any content requiring an uppercase y with a macron above it.
No. Use numeric codes &#562; or &#x0232;, or the CSS entity \0232. In UTF-8 pages you can type Ȳ directly.
Ȳ (U+0232) is Y with a macron indicating a long vowel. Y (U+0059) is the plain uppercase letter. They are different characters for different typographic roles.

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