HTML Entity for Lowercase U Middle Bar (ʉ)

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

What You'll Learn

How to display the lowercase u with middle bar (ʉ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0289 (LATIN SMALL LETTER U BAR) in the IPA Extensions block. It represents a u with a horizontal bar through the stem and is used in IPA for the close central rounded vowel [ʉ] and in some African language orthographies.

Render it with ʉ, ʉ, or CSS escape \0289. There is no named HTML entity for this character. In UTF-8 documents you can also type ʉ directly. This is not strikethrough text formatting—it is a single precomposed Unicode letter.

⚡ Quick Reference — Lowercase U Middle Bar Entity

Unicode U+0289

IPA Extensions

Hex Code ʉ

Hexadecimal reference

HTML Code ʉ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0289
Hex code       ʉ
HTML code      ʉ
Named entity   (none)
CSS code       \0289
Meaning        Latin small letter u bar
IPA            Close central rounded vowel [ʉ]
Related        U+0288 = ʈ (uppercase)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase u middle bar (ʉ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

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

🌐 Browser Support

The lowercase u middle bar (ʉ) is supported in all modern browsers as part of IPA Extensions:

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

👀 Live Preview

See the lowercase u middle bar (ʉ) in phonetic and content contexts:

Large glyphʉ
IPAClose central rounded vowel: [ʉ]
Unicode nameLatin small letter u bar
Uppercaseʈ (U+0288) — LATIN CAPITAL LETTER U BAR
Not the same asplain u (U+0075)  |  ư (u with horn)  |  CSS text-decoration: line-through
Numeric refs&#x0289; &#649; \0289

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#649; uses the decimal Unicode value 649 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

Direct Character

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

HTML markup
4

CSS Entity

\0289 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+0289 sits in IPA Extensions. Uppercase equivalent: U+0288 (ʈ). Do not confuse with plain u or CSS strikethrough styling.

Use Cases

The lowercase u middle bar (ʉ) is commonly used in:

🎤 IPA Phonetics

Represents the close central rounded vowel [ʉ] in International Phonetic Alphabet notation.

📝 Linguistics & Phonology

Phonetic transcription, dictionaries, and academic papers using IPA symbols.

🌍 African Orthographies

Some African language writing systems use u bar as a distinct letter in romanization.

🌐 Transliteration

Romanization systems requiring extended IPA and Latin letters with middle bar.

📚 Language Learning

Phonetics courses and pronunciation guides teaching IPA vowel symbols.

📄 Academic Content

Character charts and linguistic resources requiring precise IPA representation.

⚙ Programmatic HTML

When building HTML from phonetic data, using &#649; or &#x0289; guarantees correct output.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ʉ directly in UTF-8 source
  • Use numeric references (&#x0289; or &#649;) when escaping is required
  • Use \0289 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support IPA Extensions (U+0250–U+02AF)
  • Distinguish ʉ from plain u and from strikethrough text decoration

Don’t

  • Use CSS text-decoration: line-through when the IPA character ʉ is required
  • Expect a named HTML entity—none exists for ʉ
  • Use the old incorrect CSS escape \00289—the correct value is \0289
  • Put CSS escape \0289 in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type ʉ directly, or use hex/decimal references

&#x0289; &#649;
2

For CSS stylesheets, use the escape in the content property

\0289
3

Unicode U+0289 — LATIN SMALL LETTER U BAR

4

IPA close central rounded vowel [ʉ]; uppercase is ʈ (U+0288)

❓ Frequently Asked Questions

Use &#x0289; (hex), &#649; (decimal), or \0289 in CSS content. There is no named HTML entity for ʉ. In UTF-8 you can also type ʉ directly.
U+0289 (LATIN SMALL LETTER U BAR). IPA Extensions block. Hex 0289, decimal 649. Used in IPA for the close central rounded vowel [ʉ]. Uppercase form is U+0288 (ʈ).
When displaying IPA phonetic notation, linguistic transcription, African language orthographies, academic papers, or any content requiring u with a middle bar (u bar).
No. ʉ is a single precomposed Unicode letter (U+0289), not CSS text-decoration: line-through applied to plain u. For IPA and orthography, use the proper character ʉ.
No. Use &#649; or &#x0289; in HTML, or \0289 in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — 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