HTML Entity for Uppercase O Middle Tilde (Ɵ)

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

What You'll Learn

How to display the uppercase O with middle tilde (Ɵ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+019F in the Latin Extended-B block. The middle tilde is a horizontal stroke through the letter O, distinct from a tilde placed above the letter.

Render it with Ɵ, Ɵ, or CSS escape \019F. There is no named HTML entity for this character. In UTF-8 documents you can also type Ɵ directly. Do not confuse Ɵ with Õ (O with tilde above) or ɵ (barred o in IPA).

⚡ Quick Reference — Uppercase O Middle Tilde Entity

Unicode U+019F

Latin Extended-B

Hex Code Ɵ

Hexadecimal reference

HTML Code Ɵ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+019F
Hex code       Ɵ
HTML code      Ɵ
Named entity   (none)
CSS code       \019F
Meaning        Latin capital letter O with middle tilde
Lowercase      (no precomposed form in Unicode)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase O middle tilde (Ɵ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\019F";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x019F;</p>
<p>Symbol (decimal): &#415;</p>
<p>Symbol (direct): Ɵ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase O middle tilde (Ɵ) 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 O middle tilde (Ɵ) in linguistic and orthographic contexts:

Large glyphƟ
Unicode nameLatin capital letter O with middle tilde
UsageAfrican orthographies, linguistic notation, typography
LowercaseNo standard precomposed lowercase in Unicode
Not the same asÕ (O tilde)  |  ɵ (barred o)  |  θ (Greek theta)
Numeric refs&#x019F; &#415; \019F

🧠 How It Works

1

Hexadecimal Code

&#x019F; uses the Unicode hexadecimal value 019F to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#415; uses the decimal Unicode value 415 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 extended Latin letter.

HTML markup
4

CSS Entity

\019F 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+019F sits in Latin Extended-B. Do not confuse with Õ (O with tilde above), ɵ (barred o), or θ (Greek theta).

Use Cases

The uppercase O middle tilde (Ɵ) is commonly used in:

🇬🇧 African Orthographies

Some African Latin writing systems use Ɵ for vowel distinctions at the start of sentences or in capitalized words.

📝 Linguistics

Academic papers, language documentation, and reference works discussing extended Latin letters and diacritics.

🎤 Phonetic Notation

Specialized phonetic or orthographic notation where the middle tilde through O is required (distinct from IPA barred o ɵ).

📚 Language Learning

Educational resources teaching African languages or extended Latin character sets.

🎨 Typography

Font specimens and design projects showcasing Latin Extended-B and middle-tilde diacritic support.

♿ Accessibility

Using the correct character (U+019F) ensures assistive technologies interpret orthographic content correctly.

⚙ Programmatic HTML

When building HTML from linguistic data, using &#415; or &#x019F; guarantees correct output.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type Ɵ directly in UTF-8 source
  • Use numeric references (&#x019F; or &#415;) when escaping is required
  • Use \019F in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B characters (U+0180–U+024F)
  • Distinguish Ɵ (middle tilde) from Õ (tilde above) and ɵ (barred o)

Don’t

  • Expect a named HTML entity—none exists for Ɵ
  • Confuse Ɵ (middle tilde) with Õ (O with tilde above) or ɵ (IPA barred o)
  • Substitute Greek theta (θ) when the Latin Ɵ is required
  • Put CSS escape \019F in HTML text nodes
  • Use \0019F in CSS—the correct escape is \019F

Key Takeaways

1

Type Ɵ directly, or use hex/decimal references

&#x019F; &#415;
2

For CSS stylesheets, use the escape in the content property

\019F
3

Unicode U+019F — LATIN CAPITAL LETTER O WITH MIDDLE TILDE

4

African orthographies and linguistics; no precomposed lowercase in Unicode

❓ Frequently Asked Questions

Use &#x019F; (hex), &#415; (decimal), or \019F in CSS content. There is no named HTML entity for Ɵ. In UTF-8 you can also type Ɵ directly.
U+019F (LATIN CAPITAL LETTER O WITH MIDDLE TILDE). Latin Extended-B block. Hex 019F, decimal 415. Used in African orthographies and linguistic notation. There is no standard precomposed lowercase counterpart in Unicode.
When displaying African language orthographies, linguistic or phonetic documentation, typography specimens, or any content that requires the precomposed O with middle tilde at sentence start or in capitalized notation.
No. There is no named HTML entity for Ɵ. Use numeric codes &#415; or &#x019F;, or the CSS entity \019F. In UTF-8 pages you can type Ɵ directly.
Ɵ (U+019F) is O with a middle tilde diacritic through the letter, used in African orthographies and specialized notation. Õ (U+00D5) is O with a tilde above, used in Portuguese, Vietnamese, and other orthographies. They are different characters.

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