HTML Entity for Uppercase Oi (Ƣ)

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

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

Unicode U+01A2

Latin Extended-B

Hex Code Ƣ

Hexadecimal reference

HTML Code Ƣ

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

Complete HTML Example

A simple example showing the uppercase oi ligature (Ƣ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01A2";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01A2;</p>
<p>Symbol (decimal): &#418;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase oi ligature (Ƣ) 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 oi ligature (Ƣ) in scholarly and notation contexts:

Large glyph Ƣ
Unicode name Latin capital letter oi
Usage African orthographies, linguistic notation, Unicode references
Lowercase ƣ (U+01A3) — LATIN SMALL LETTER OI
Not the same as English “Oi!” (O + i)  |  Œ (oe ligature)  |  ȣ (ou ligature)
Numeric refs &#x01A2; &#418; \01A2

🧠 How It Works

1

Hexadecimal Code

&#x01A2; uses the Unicode hexadecimal value 01A2 to display the uppercase oi ligature. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#418; uses the decimal Unicode value 418 to display the same character.

HTML markup
3

Direct Character

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

HTML markup
4

CSS Entity

\01A2 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+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:

🇮🇪 African orthographies

Historical and contemporary African language writing systems that use oi as a distinct letter (e.g. Gokana).

🔤 Linguistics

Phonetic transcription, dictionaries, and language documentation requiring the single-character oi unit.

📚 Academic publishing

Scholarly papers, Unicode references, and character-set documentation that display Ƣ correctly.

🎨 Typography

Font specimens showcasing Latin Extended-B ligature support in design systems.

🌐 Internationalization

Content targeting locales or languages that require the oi ligature character.

⚙ Programmatic HTML

When building HTML from encoded text, &#418; or &#x01A2; guarantees correct output.

♿ Accessibility

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 \01A2 in HTML text nodes

Key Takeaways

1

Type Ƣ directly, or use hex/decimal references

&#x01A2; &#418;
2

For CSS stylesheets, use the escape in the content property

\01A2
3

Unicode U+01A2 — LATIN CAPITAL LETTER OI (ligature)

4

African orthographies & linguistics; lowercase is ƣ (U+01A3)

❓ Frequently Asked Questions

Use &#x01A2; (hex), &#418; (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 (ƣ).
No. Ƣ (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+01A2) is one Unicode character—a ligature glyph. Typing O followed by I is two separate code points (U+004F + U+0049). They may look similar in some fonts but are not interchangeable in encoded or scholarly text.
No. Use numeric codes &#418; or &#x01A2;, 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.

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