HTML Entity for Uppercase Oi (Ƣ)

What You'll Learn
How to display the Latin capital letter oi ligature (Ƣ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01A2 in the Latin Extended-B block—a single precomposed glyph joining O and i into one ligature letter.
Render it with Ƣ, Ƣ, or CSS escape \01A2. There is no named HTML entity. This is not the casual English exclamation “Oi!”—that is spelled with ordinary letters O and i. Lowercase form: ƣ (U+01A3).
⚡ Quick Reference — Uppercase Oi Entity
U+01A2Latin Extended-B
ƢHexadecimal reference
ƢDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01A2
Hex code Ƣ
HTML code Ƣ
Named entity (none)
CSS code \01A2
Meaning Latin capital letter oi (ligature)
Related U+01A3 = ƣ (lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase oi ligature (Ƣ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01A2";
}
</style>
</head>
<body>
<p>Symbol (hex): Ƣ</p>
<p>Symbol (decimal): Ƣ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase oi ligature (Ƣ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the uppercase oi ligature (Ƣ) in scholarly and notation contexts:
🧠 How It Works
Hexadecimal Code
Ƣ uses the Unicode hexadecimal value 01A2 to display the uppercase oi ligature. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ƣ uses the decimal Unicode value 418 to display the same character.
Direct Character
Type Ƣ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this ligature.
CSS Entity
\01A2 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: Ƣ. Unicode U+01A2 sits in Latin Extended-B. Lowercase equivalent: U+01A3 (ƣ). Do not confuse with the digraph “OI” or the English exclamation “Oi!”
Use Cases
The uppercase oi ligature (Ƣ) is commonly used in:
Historical and contemporary African language writing systems that use oi as a distinct letter (e.g. Gokana).
Phonetic transcription, dictionaries, and language documentation requiring the single-character oi unit.
Scholarly papers, Unicode references, and character-set documentation that display Ƣ correctly.
Font specimens showcasing Latin Extended-B ligature support in design systems.
Content targeting locales or languages that require the oi ligature character.
When building HTML from encoded text, Ƣ or Ƣ guarantees correct output.
Using U+01A2 ensures assistive technologies interpret the ligature as one character.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type Ƣ directly in UTF-8 source
- Use numeric references when escaping or generating markup programmatically
- Use Ƣ when the source text specifies the oi ligature character
- Choose fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish Ƣ from the digraph “OI”, lowercase ƣ, and oe/ou ligatures
Don’t
- Confuse U+01A2 with the English exclamation “Oi!” (plain letters O + i)
- Substitute two letters “OI” when Ƣ is the correct encoded character
- Use padded Unicode notation like U+001A2—the correct value is
U+01A2 - Expect a named HTML entity—none exists for Ƣ
- Put CSS escape
\01A2in HTML text nodes
Key Takeaways
Type Ƣ directly, or use hex/decimal references
Ƣ ƢFor CSS stylesheets, use the escape in the content property
\01A2Unicode U+01A2 — LATIN CAPITAL LETTER OI (ligature)
African orthographies & linguistics; lowercase is ƣ (U+01A3)
Previous: Uppercase Oe Close Cut (Œ) Next: Uppercase Ou
❓ Frequently Asked Questions
Ƣ (hex), Ƣ (decimal), or \01A2 in CSS content. There is no named HTML entity for Ƣ. In UTF-8 you can also type Ƣ directly.U+01A2 (LATIN CAPITAL LETTER OI). Latin Extended-B block. Hex 01A2, decimal 418. A single precomposed oi ligature—not the English interjection “Oi!” Lowercase form is U+01A3 (ƣ).U+01A2) is one Unicode ligature character. The casual English interjection “Oi!” is spelled with ordinary letters O and i—two separate code points.U+004F + U+0049). They may look similar in some fonts but are not interchangeable in encoded or scholarly text.Ƣ or Ƣ, or the CSS entity \01A2. In UTF-8 pages you can type Ƣ directly.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
