HTML Entity for Lowercase Ou (ȣ)

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

What You'll Learn

How to display the lowercase ou ligature (ȣ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0223 in the Latin Extended-B block—a single precomposed glyph that joins the letters o and u into one ligature.

Render it with ȣ, ȣ, or CSS escape \0223. There is no named HTML entity. In UTF-8 documents you can also type ȣ directly. It appears in medieval Latin, some African language orthographies, and linguistic notation—not to be confused with typing “ou” as two separate letters, with ö, or with ø.

⚡ Quick Reference — Lowercase Ou Entity

Unicode U+0223

Latin Extended-B

Hex Code ȣ

Hexadecimal reference

HTML Code ȣ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0223
Hex code       ȣ
HTML code      ȣ
Named entity   (none)
CSS code       \0223
Meaning        Latin small letter ou (ligature)
Related        U+0222 = Ȣ (uppercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase ou ligature (ȣ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

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

🌐 Browser Support

The lowercase ou 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 lowercase ou ligature (ȣ) in scholarly and notation contexts:

Large glyphȣ
Unicode nameLatin small letter ou
UsageMedieval Latin ligatures, African orthographies, linguistic notation
UppercaseȢ (U+0222) — LATIN CAPITAL LETTER OU
Not the same aso + u (two letters)  |  ö (umlaut)  |  ø (stroke)
Noteȣ is one code point—not the digraph “ou” typed as two characters
Numeric refs&#x0223; &#547; \0223

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#547; uses the decimal Unicode value 547 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 ligature.

HTML markup
4

CSS Entity

\0223 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+0223 sits in Latin Extended-B. Uppercase equivalent: U+0222 (Ȣ). Do not confuse with the digraph “ou”, ö (umlaut), or ø (stroke).

Use Cases

The lowercase ou ligature (ȣ) is commonly used in:

📜 Medieval Latin

Critical editions and transcriptions that preserve historical ou ligatures in Latin manuscripts.

🇮🇪 African orthographies

Some West and Central African language writing systems that use the ou ligature as a distinct letter.

🔤 Linguistics

Phonetic transcription, dictionaries, and language documentation requiring the single-character ou 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.

♿ Accessibility

Using U+0223 ensures screen readers and assistive technologies interpret the ligature as one character.

⚙ Programmatic HTML

When building HTML from encoded text, &#547; or &#x0223; guarantees correct output.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ȣ directly in UTF-8 source
  • Use numeric references (&#x0223; or &#547;) when escaping is required
  • Use ȣ when the source text specifies the ou ligature character
  • Choose fonts that support Latin Extended-B (U+0180–U+024F)
  • Distinguish ȣ from ö (umlaut), ø (stroke), and the digraph “ou”

Don’t

  • Substitute two letters “ou” when ȣ is the correct encoded character
  • Use ȣ for German ö or Nordic ø—those are different letters
  • Expect a named HTML entity—none exists for ȣ
  • Put CSS escape \0223 in HTML text nodes
  • Confuse U+0223 with U+0233 (Latin small letter o with macron, ȳ)

Key Takeaways

1

Type ȣ directly, or use hex/decimal references

&#x0223; &#547;
2

For CSS stylesheets, use the escape in the content property

\0223
3

Unicode U+0223 — LATIN SMALL LETTER OU (ligature)

4

Medieval Latin, African orthographies & linguistics; uppercase is Ȣ (U+0222)

❓ Frequently Asked Questions

Use &#x0223; (hex), &#547; (decimal), or \0223 in CSS content. There is no named HTML entity for ȣ. In UTF-8 you can also type ȣ directly.
U+0223 (LATIN SMALL LETTER OU). Latin Extended-B block. Hex 0223, decimal 547. A single precomposed ou ligature—not the same as typing o and u separately. Uppercase form is U+0222 (Ȣ).
When displaying medieval Latin ligatures, African language orthographies, linguistic or phonetic notation, critical editions, or any content that requires the single-character ou ligature rather than the digraph “ou.”
No. Use numeric codes &#547; or &#x0223;, or the CSS entity \0223. In UTF-8 pages you can type ȣ directly.
ȣ (U+0223) is one Unicode character—a ligature glyph. Typing o followed by u is two separate code points. They may look similar in some fonts but are not interchangeable in scholarly, linguistic, or encoded text.

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