HTML Entity for Upsilon (Ʊ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+01B1

What Is Upsilon?

Latin capital upsilon (Ʊ) is the Unicode character at U+01B1 in Latin Extended-B. Official name: LATIN CAPITAL LETTER UPSILON — used in African orthographies, phonetic notation, and linguistics. It is not the Greek letter Υ.

Remember
Character     Ʊ
Unicode       U+01B1
Hex entity    Ʊ
Decimal       Ʊ
CSS escape    \01B1
Named entity  (none)
Not the same  Υ · ʊ · Y

Prefer Ʊ or Ʊ in HTML markup. You can also type Ʊ in UTF-8. There is no named entity. For the related IPA small letter, see upsilon small (U+028A).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterƱHTML text (UTF-8)
Hex entityƱHTML markup (preferred)
Decimal entityƱHTML markup
CSS escape\01B1Stylesheet content
Named entity—Not defined in HTML5
IPA small (related)ʊ (U+028A)Numeric only

When to Use Which

SituationUse
Latin capital upsilon (Ʊ)Ʊ or Ʊ
IPA small upsilon (ʊ)ʊ (ʊ)
Greek capital upsilon (Υ)Υ (Υ, U+03A5)
Greek small upsilon (υ)υ (υ, U+03C5)
Plain capital Y (letter)Y (U+0059)
Generated text via ::before / ::aftercontent: "\01B1"

Live Preview

Latin capital upsilon rendered alone and next to related letters.

Large glyph Ʊ
Notation Glyph: Ʊ
Compared Ʊ  |  Υ  |  ʊ  |  Y
Hint Compare: Latin Ʊ | Greek Υ | IPA small ʊ | Letter Y
With entities Hex: Ʊ | Decimal: Ʊ

Complete HTML Example

One page that shows the letter with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce Ʊ, plus a short comparison note.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Latin Capital Upsilon (Ʊ)</title>
  <style>
    #point::after {
      content: "\01B1";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x1B1;</p>
  <p>Using HTML Code: &#433;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: Ʊ</p>
  <p>Not Greek Υ (&Upsilon;)</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+01B1 → &#x1B1; in HTML. The browser turns it into Ʊ.

2. Decimal: same code point as 433 → &#433;. Same result as hex.

3. CSS: use \01B1 in content (not an HTML entity). #point::after appends that Ʊ after the paragraph text.

4. Typed / compare: paste Ʊ in UTF-8. Keep Greek Υ (&Upsilon;) as a separate character.

Pitfalls & Tips

Common mistakes when working with U+01B1.

Named

No Latin named entity

HTML5 has no named entity for U+01B1. Use &#x1B1; or &#433;. Do not confuse with &Upsilon; (that is Greek).

vs Υ

Not Greek upsilon

Υ (&Upsilon;, U+03A5) is Greek. Ʊ is Latin Extended-B — different scripts and uses.

vs ʊ

Not the IPA small

ʊ (U+028A) is LATIN SMALL LETTER UPSILON in IPA Extensions — the near-close near-back rounded vowel. Use it for IPA, not as a drop-in lowercase of U+01B1 in every orthography.

vs Y

Not the letter Y

ASCII Y is a different letter. Latin upsilon has its own horseshoe-like shape.

Encoding

Keep UTF-8 declared

Latin Extended-B letters display reliably with <meta charset="UTF-8">. Prefer numeric entities when encoding is uncertain.

CSS vs HTML

Do not mix escapes

\01B1 belongs in CSS strings. &#x1B1; / &#433; belong in HTML.

A11y

Say Latin, not Greek

When Ʊ appears in examples, label it as Latin / phonetic so screen-reader users are not steered toward Greek upsilon.

Browser Support

Latin capital upsilon (U+01B1) and its entity forms (&#x1B1;, &#433;, CSS \\01B1) are supported in all mainstream browsers. Latin Extended-B glyphs are available in modern system fonts.

✓ Universal support

Upsilon (&#x01B1;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

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+01B1 Full support

Bottom line: Prefer &#x1B1; or &#433; in HTML. Use \\01B1 only inside CSS content. Do not confuse with Greek Υ (&Upsilon;).

Key Takeaways

  • Unicode: Latin capital upsilon is U+01B1 (decimal 433) — glyph Ʊ.
  • HTML: use &#x1B1; or &#433; — no named entity in HTML5.
  • CSS: use \01B1 inside content for generated text.
  • Meaning: Ʊ is Latin — not Greek Υ (&Upsilon;), not IPA ʊ, not Y.

One line: U+01B1 → &#x1B1; / &#433; / CSS \01B1.

Frequently Asked Questions

Use &#x1B1; (hex), &#433; (decimal), type Ʊ directly in UTF-8, or the CSS escape \01B1 in content. There is no named HTML entity for U+01B1.
U+01B1 (LATIN CAPITAL LETTER UPSILON). Hex 1B1, decimal 433. It belongs to Latin Extended-B (U+0180–U+024F).
No. HTML5 does not define a named entity for this character. Use numeric forms &#433; or &#x1B1;.
No. Ʊ is a Latin letter (U+01B1). Greek capital upsilon is U+03A5 and uses &Upsilon;. They look related but are different characters.
Use it for African orthographies, phonetic notation, or linguistic text that needs Latin capital Ʊ — not as a substitute for Greek Υ or IPA small ʊ.
HTML entities (&#433; or &#x1B1;) go in markup. The CSS escape \01B1 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Latin capital upsilon (Ʊ) is Unicode U+01B1 (decimal 433) — LATIN CAPITAL LETTER UPSILON in Latin Extended-B. HTML5 has no named entity — use &#x1B1; or &#433;. It is not Greek capital upsilon Υ (&Upsilon;, U+03A5). The related IPA small form is U+028A (ʊ). Used in African orthographies, phonetic notation, and linguistics.

Next: Upsilon Small

Learn the HTML entity for IPA small letter upsilon (U+028A).

Continue 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