HTML Entity for Upsilon (Ʊ)

What You'll Learn
How to display the Latin capital letter upsilon (Ʊ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01B1 (LATIN CAPITAL LETTER UPSILON) in the Latin Extended-B block—a Latin letter shaped like an upsilon, used in some African orthographies and phonetic notation. It is not the Greek letter Υ (U+03A5, Υ).
Render it with Ʊ, Ʊ, or CSS escape \01B1. There is no named HTML entity for this character. The related IPA small form is ʊ (U+028A). Do not confuse Ʊ with Greek Υ (U+03A5), plain U (U+0055), or Vietnamese horn letters.
⚡ Quick Reference — Upsilon Entity
U+01B1Latin Extended-B
ƱHexadecimal reference
ƱDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01B1
Hex code Ʊ
HTML code Ʊ
Named entity (none)
CSS code \01B1
Meaning Latin capital letter upsilon
Also called Latin upsilon
Related U+028A = ʊ (upsilon small, IPA)
U+03A5 = Υ (Greek upsilon, Υ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the Latin capital upsilon (Ʊ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01B1";
}
</style>
</head>
<body>
<p>Symbol (hex): Ʊ</p>
<p>Symbol (decimal): Ʊ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Latin capital upsilon (Ʊ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the Latin capital upsilon (Ʊ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
Ʊ uses the Unicode hexadecimal value 01B1 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ʊ uses the decimal Unicode value 433 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01B1 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: Ʊ. Unicode U+01B1 sits in Latin Extended-B. Do not confuse with Greek U+03A5 (Υ, Υ) or IPA ʊ (U+028A). Use fonts with extended Latin support for reliable rendering.
Use Cases
The Latin capital upsilon (Ʊ) is commonly used in:
Some African language writing systems use Ʊ as a distinct vowel letter in romanization.
Linguistic and phonetic transcription alongside the IPA small form ʊ.
Academic papers, dictionaries, and character charts for extended Latin letters.
Unicode reference pages and scholarly publications requiring accurate Ʊ representation.
Encoded texts and multilingual archives with Latin Extended-B characters in HTML.
Font specimens and design references showcasing Latin Extended-B letters.
When building HTML from linguistic data, using Ʊ or Ʊ guarantees correct output.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type Ʊ directly in UTF-8 source
- Use numeric references (
ƱorƱ) when escaping is required - Use
\01B1in CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support Latin Extended-B characters
- Distinguish Ʊ (Latin upsilon) from Greek Υ (
Υ)
Don’t
- Use Ʊ when you need Greek upsilon Υ (
Υ, U+03A5) - Substitute plain
Uwhen Ʊ is required for correct orthography - Confuse Ʊ (Latin upsilon) with ʊ (IPA small upsilon) or horn letters
- Use the old incorrect CSS escape
\001B1—the correct value is\01B1 - Expect a named HTML entity—none exists for Ʊ
Key Takeaways
Type Ʊ directly, or use hex/decimal references
Ʊ ƱFor CSS stylesheets, use the escape in the content property
\01B1Unicode U+01B1 — LATIN CAPITAL LETTER UPSILON
Not Greek Υ; IPA small form is ʊ (U+028A)
Previous: Uppercase Z Stroke (Ƶ) Next: Upsilon Small (ʊ)
❓ Frequently Asked Questions
Ʊ (hex), Ʊ (decimal), or \01B1 in CSS content. There is no named HTML entity. In UTF-8 you can also type Ʊ directly.U+01B1 (LATIN CAPITAL LETTER UPSILON). Latin Extended-B block. Hex 01B1, decimal 433. Related IPA form is U+028A (ʊ). Not the same as Greek U+03A5 (Υ, Υ).Υ. They look similar but are different Unicode characters with different code points.Ʊ or Ʊ in HTML, or \01B1 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
