HTML Entity for Uppercase O Center Dot (ʘ)

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

What You'll Learn

How to display the uppercase O center dot (ʘ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0298 (LATIN LETTER BILABIAL CLICK) in the IPA Extensions block (U+0250–U+02AF). It represents the bilabial click consonant in IPA phonetic notation—visually an O-shaped letter with a center dot.

Render it with ʘ, ʘ, or CSS escape \0298. There is no named HTML entity. Do not confuse ʘ with plain O, the middle dot punctuation mark ·, or Latin letters like Ŏ (O breve).

⚡ Quick Reference — Uppercase O Center Dot Entity

Unicode U+0298

IPA Extensions

Hex Code ʘ

Hexadecimal reference

HTML Code ʘ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0298
Hex code       ʘ
HTML code      ʘ
Named entity   (none)
CSS code       \0298
Official name  LATIN LETTER BILABIAL CLICK
IPA meaning    Bilabial click consonant
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the uppercase O center dot (ʘ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

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

🌐 Browser Support

The uppercase O center dot (ʘ) renders in modern browsers when fonts include IPA Extensions glyphs:

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

👀 Live Preview

See the uppercase O center dot (ʘ) in phonetic context:

IPA context[ʘaa] — bilabial click in phonetic transcription
Large glyphʘ
Unicode nameLATIN LETTER BILABIAL CLICK
Not the same asO (plain)  |  · (middle dot)  |  Ŏ (O breve)
Numeric refs&#x0298; &#664; \0298

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
4

CSS Entity

\0298 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+0298 sits in IPA Extensions. Official name: LATIN LETTER BILABIAL CLICK. Do not confuse with plain O, · (middle dot), or Latin diacritic letters.

Use Cases

The uppercase O center dot (ʘ) is commonly used in:

🎤 IPA Transcription

Represents the bilabial click consonant in International Phonetic Alphabet notation for click languages and phonetic studies.

📝 Linguistics

Use in academic papers, textbooks, and documentation on phonetics, click consonants, and African language orthographies.

📚 Dictionaries

Show pronunciation guides or phonetic headwords that include the bilabial click symbol ʘ.

🌐 Language Learning

Display correct IPA symbols in phonetics courses, pronunciation guides, and language learning platforms.

📄 Academic Content

Include in research papers, thesis documents, and scholarly articles on phonology and language analysis.

♿ Accessibility

Using the correct character (U+0298) ensures assistive technologies interpret the bilabial click symbol as intended.

🎨 CSS Generated Content

Using \0298 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 (&#x0298; or &#664;) when escaping is required
  • Use \0298 in CSS content when generating the symbol via pseudo-elements
  • Choose fonts with IPA Extensions support (e.g. Doulos SIL, Charis SIL, Gentium)
  • Distinguish ʘ (bilabial click) from plain O and · (middle dot)

Don’t

  • Expect a named HTML entity—none exists for ʘ
  • Confuse ʘ (IPA bilabial click) with plain O or · (punctuation middle dot)
  • Substitute O + . when ʘ is required in phonetic notation
  • Put CSS escape \0298 in HTML text nodes
  • Use \00298 in CSS—the correct escape is \0298

Key Takeaways

1

Type ʘ directly, or use hex/decimal references

&#x0298; &#664;
2

For CSS stylesheets, use the escape in the content property

\0298
3

Unicode U+0298 — LATIN LETTER BILABIAL CLICK

4

IPA bilabial click symbol; IPA Extensions block (U+0250–U+02AF)

❓ Frequently Asked Questions

Use &#x0298; (hex), &#664; (decimal), or \0298 in CSS content. There is no named HTML entity for ʘ. In UTF-8 you can also type ʘ directly.
U+0298 (LATIN LETTER BILABIAL CLICK). IPA Extensions block. Hex 0298, decimal 664. Used in IPA notation for the bilabial click consonant.
When displaying IPA phonetic transcription, linguistics content, click-language notation, dictionaries, language learning materials, or academic writing that requires the bilabial click symbol.
No. There is no named HTML entity for ʘ. Use numeric codes &#664; or &#x0298;, or the CSS entity \0298. In UTF-8 pages you can type ʘ directly.
HTML code (&#664; or &#x0298;) is used in HTML content; CSS entity \0298 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