HTML Entity for Lowercase O Barred (ɵ)

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

What You'll Learn

How to display the lowercase o barred (ɵ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0275 in the IPA Extensions block. It represents the Latin small letter o with a stroke through it, used in the International Phonetic Alphabet (IPA) for a close-mid central rounded vowel and in some Nordic orthographies.

Render it with ɵ, ɵ, or CSS escape \0275. There is no named HTML entity for this character. In UTF-8 documents you can also type ɵ directly.

⚡ Quick Reference — Lowercase O Barred Entity

Unicode U+0275

IPA Extensions

Hex Code ɵ

Hexadecimal reference

HTML Code ɵ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0275
Hex code       ɵ
HTML code      ɵ
Named entity   (none)
CSS code       \0275
Meaning        Latin small letter barred o
Related        U+019F = Ɵ (uppercase)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase o barred (ɵ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

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

🌐 Browser Support

The lowercase o barred (ɵ) is supported in all modern browsers when the font includes IPA Extensions characters:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the lowercase o barred (ɵ) in phonetic and linguistic contexts:

Large glyphɵ
IPA usageClose-mid central rounded vowel (e.g. in phonetic transcription)
Unicode nameLatin small letter barred o
UppercaseƟ (U+019F) — LATIN CAPITAL LETTER O WITH MIDDLE TILDE
Not the same asθ (Greek theta)  |  ø (o stroke)  |  o (plain)
Numeric refs&#x0275; &#629; \0275

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#629; uses the decimal Unicode value 629 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 IPA symbol.

HTML markup
4

CSS Entity

\0275 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+0275 sits in IPA Extensions. Uppercase equivalent: U+019F (Ɵ). Do not confuse with θ (Greek theta) or ø (o with stroke).

Use Cases

The lowercase o barred (ɵ) is commonly used in:

🎤 IPA Phonetics

Represent the close-mid central rounded vowel in phonetic transcriptions and pronunciation guides.

📝 Linguistics

Use in academic papers, dictionaries, and language descriptions that require precise phonetic symbols.

🇪🇺 Nordic Languages

Display text in orthographies that use the barred o, such as some Sami or dialectal notations.

🌐 Language Learning

Show correct phonetic symbols in pronunciation examples and vocabulary entries.

📚 Dictionaries

Display IPA or other phonetic notation alongside word definitions and etymologies.

♿ Accessibility

Using the correct character (U+0275) ensures assistive technologies interpret the barred o symbol correctly.

🎨 CSS Generated Content

Using \0275 in the CSS content property to insert ɵ via pseudo-elements.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ɵ directly in UTF-8 source
  • Use numeric references (&#x0275; or &#629;) when escaping is required
  • Use \0275 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support the IPA Extensions block (U+0250–U+02AF)
  • Distinguish ɵ (barred o) from θ (Greek theta) and ø (o with stroke)

Don’t

  • Expect a named HTML entity—none exists for ɵ
  • Confuse ɵ (barred o) with θ (theta), ø (o stroke), or plain o
  • Use a font that lacks IPA Extensions support for phonetic content
  • Put CSS escape \0275 in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type ɵ directly, or use hex/decimal references

&#x0275; &#629;
2

For CSS stylesheets, use the escape in the content property

\0275
3

Unicode U+0275 — LATIN SMALL LETTER BARRED O

4

IPA phonetics and linguistics; uppercase is Ɵ (U+019F)

❓ Frequently Asked Questions

Use &#x0275; (hex), &#629; (decimal), or \0275 in CSS content. There is no named HTML entity for ɵ. In UTF-8 you can also type ɵ directly.
U+0275 (LATIN SMALL LETTER BARRED O). IPA Extensions block. Hex 0275, decimal 629. Used in IPA phonetics and some Nordic orthographies. Uppercase form is U+019F (Ɵ).
When displaying IPA phonetic transcriptions, linguistics content, Nordic language text, dictionaries, language learning sites, or any content that requires the barred o character.
No. There is no named HTML entity for ɵ. Use numeric codes &#629; or &#x0275;, or the CSS entity \0275. In UTF-8 pages you can type ɵ directly.
HTML code (&#629; or &#x0275;) is used in HTML content; CSS entity \0275 is used in stylesheets in the content property of pseudo-elements. Both produce ɵ.

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