HTML Entity for Uppercase O Tilde Macron (Ȭ)

What You'll Learn
How to display the uppercase O with tilde and macron (Ȭ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+022C in the Latin Extended-B block—a single precomposed glyph with a tilde (˜) and a horizontal bar (macron) above the letter O.
Render it with Ȭ, Ȭ, or CSS escape \022C. There is no named HTML entity. In UTF-8 documents you can also type Ȭ directly. It is used in linguistic and phonetic notation—not the same as Portuguese or Estonian Õ (tilde only).
⚡ Quick Reference — Uppercase O Tilde Macron Entity
U+022CLatin Extended-B
ȬHexadecimal reference
ȬDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+022C
Hex code Ȭ
HTML code Ȭ
Named entity (none)
CSS code \022C
Meaning Latin capital letter O with tilde and macron
Related U+022D = ȭ (lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase O tilde macron (Ȭ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\022C";
}
</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 uppercase O tilde macron (Ȭ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the uppercase O tilde macron (Ȭ) in linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ȭ uses the Unicode hexadecimal value 022C to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ȭ uses the decimal Unicode value 556 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 letter.
CSS Entity
\022C 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+022C sits in Latin Extended-B. Lowercase equivalent: U+022D (ȭ). Do not confuse with Õ (tilde only), Ō (macron only), or Ȫ (diaeresis + macron).
Use Cases
The uppercase O tilde macron (Ȭ) is commonly used in:
Phonetic transcription marking both nasalization (tilde) and vowel length (macron) on O.
Scholarly papers, dictionaries, and critical editions requiring precise diacritic combinations.
Orthographic documentation and transliteration schemes that use the combined tilde-and-macron form.
Linguistics and language courses teaching diacritic notation and extended Latin characters.
Font specimens showcasing Latin Extended-B support for stacked diacritics.
Using U+022C ensures assistive technologies interpret the symbol correctly in academic content.
When building HTML from data, Ȭ 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 fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish Ȭ from Õ (tilde only), Ō (macron only), and Ȫ (diaeresis + macron)
- Use the precomposed Ȭ when both tilde and macron apply to the same O
Don’t
- Use Ȭ for Portuguese or Estonian text—use Õ (
Õ) instead - Substitute Õ or Ō when Ȭ is required in linguistic notation
- Stack separate combining marks when the precomposed Ȭ is the correct character
- Expect a named HTML entity—none exists for Ȭ
- Put CSS escape
\022Cin HTML text nodes
Key Takeaways
Type Ȭ directly, or use hex/decimal references
Ȭ ȬFor CSS stylesheets, use the escape in the content property
\022CUnicode U+022C — LATIN CAPITAL LETTER O WITH TILDE AND MACRON
Linguistics & phonetics; lowercase is ȭ (U+022D)
Previous: Uppercase O Tilde (Õ) Next: Uppercase O Umlaut
❓ Frequently Asked Questions
Ȭ (hex), Ȭ (decimal), or \022C in CSS content. There is no named HTML entity for Ȭ. In UTF-8 you can also type Ȭ directly.U+022C (LATIN CAPITAL LETTER O WITH TILDE AND MACRON). Latin Extended-B block. Hex 022C, decimal 556. Used in linguistic and phonetic notation. Lowercase form is U+022D (ȭ).Ȭ or Ȭ, or the CSS entity \022C. In UTF-8 pages you can type Ȭ directly.Õ)—used in Portuguese and Estonian. Ō (U+014C) is O with macron only (Ō). Use the character that matches your text.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
