HTML Entity for Lowercase Ou (ȣ)

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
U+0223Latin Extended-B
ȣHexadecimal reference
ȣDecimal reference
—No named entity
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0223";
}
</style>
</head>
<body>
<p>Symbol (hex): ȣ</p>
<p>Symbol (decimal): ȣ</p>
<p>Symbol (direct): ȣ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase ou ligature (ȣ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the lowercase ou ligature (ȣ) in scholarly and notation contexts:
🧠 How It Works
Hexadecimal Code
ȣ uses the Unicode hexadecimal value 0223 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ȣ uses the decimal Unicode value 547 to display the same character. A common method when a numeric reference is needed.
Direct Character
Type ȣ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this ligature.
CSS Entity
\0223 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+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:
Critical editions and transcriptions that preserve historical ou ligatures in Latin manuscripts.
Some West and Central African language writing systems that use the ou ligature as a distinct letter.
Phonetic transcription, dictionaries, and language documentation requiring the single-character ou unit.
Scholarly papers, Unicode references, and character-set documentation that display ȣ correctly.
Font specimens showcasing Latin Extended-B ligature support in design systems.
Using U+0223 ensures screen readers and assistive technologies interpret the ligature as one character.
When building HTML from encoded text, ȣ 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 ȣ 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
\0223in HTML text nodes - Confuse U+0223 with U+0233 (Latin small letter o with macron, ȳ)
Key Takeaways
Type ȣ directly, or use hex/decimal references
ȣ ȣFor CSS stylesheets, use the escape in the content property
\0223Unicode U+0223 — LATIN SMALL LETTER OU (ligature)
Medieval Latin, African orthographies & linguistics; uppercase is Ȣ (U+0222)
Previous: Lowercase O Umlaut (ö) Next: Lowercase P
❓ Frequently Asked Questions
ȣ (hex), ȣ (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 (Ȣ).ȣ or ȣ, or the CSS entity \0223. 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
