HTML Entity for Ww Stack (ʬ)

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

What You'll Learn

How to display the Ww Stack symbol (ʬ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+02AC (LATIN SMALL LETTER BILABIAL PERCUSSIVE) in the IPA Extensions block (U+0250–U+02AF)—the IPA symbol for a bilabial percussive sound.

Render it with ʬ, ʬ, or CSS escape \02AC. There is no named HTML entity. Do not confuse ʬ with ¬ (U+00AC, NOT SIGN, ¬). Use UTF-8 encoding and IPA-friendly fonts for reliable display.

⚡ Quick Reference — Ww Stack

Unicode U+02AC

IPA Extensions

Hex Code ʬ

Hexadecimal reference

HTML Code ʬ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+02AC
Hex code       ʬ
HTML code      ʬ
Named entity   (none)
CSS code       \02AC
Meaning        Bilabial percussive (IPA)
IPA name       Latin small letter bilabial percussive
Not the same   U+00AC = ¬ (NOT SIGN, ¬)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing Ww Stack (ʬ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="utf-8">
 <style>
  #ipa:after{
   content: "\02AC";
  }
 </style>
</head>
<body>
<p>Ww Stack (hex): [&#x02AC;]</p>
<p>Ww Stack (decimal): [&#684;]</p>
<p id="ipa">IPA symbol: </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+02AC is supported when UTF-8 is used and the font includes IPA Extensions glyphs:

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

👀 Live Preview

See Ww Stack (ʬ) in phonetic context:

IPA brackets[ʬ]
Large glyphʬ
In proseThe bilabial percussive ʬ appears in specialized IPA notation.
Not the same as¬ (U+00AC, NOT SIGN, &not;)
Numeric refs&#x02AC; &#684; \02AC

🧠 How It Works

1

Hexadecimal Code

&#x02AC; uses the Unicode hexadecimal value 02AC to display the bilabial percussive symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#684; uses the decimal Unicode value 684 to display the same IPA character.

HTML markup
3

CSS Entity

\02AC is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: ʬ. Unicode U+02AC is LATIN SMALL LETTER BILABIAL PERCUSSIVE in IPA Extensions. Not U+00AC (¬, NOT SIGN).

Use Cases

Ww Stack (ʬ) is commonly used in:

📝 Linguistic content

Phonetic transcriptions and linguistic notation in academic content.

🎙 IPA documentation

International Phonetic Alphabet references and symbol charts.

📖 Dictionaries

Pronunciation guides and dictionary phonetic entries.

🎓 Language learning

Textbooks, apps, and materials focusing on pronunciation.

📄 Academic papers

Research publications requiring precise phonetic symbols.

🗃 Specialized displays

Character references and phonetic symbol glossaries.

♿ Accessibility

Provide phonetic descriptions alongside symbols for clarity.

💡 Best Practices

Do

  • Use UTF-8 (<meta charset="utf-8">) for IPA characters
  • Choose fonts with IPA Extensions support (e.g. serif IPA fonts)
  • Use ʬ for bilabial percussive—not ¬ (&not;)
  • Pick one numeric style (hex or decimal) per project for consistency
  • Provide phonetic context or descriptions for readers

Don’t

  • Confuse U+02AC (ʬ, IPA) with U+00AC (¬, NOT SIGN)
  • Put CSS escape \02AC in HTML text nodes
  • Assume every font renders IPA glyphs clearly
  • Mix entity styles randomly in one file
  • Expect a named HTML entity—none exists for ʬ

Key Takeaways

1

Type ʬ directly, or use hex/decimal references

&#x02AC; &#684;
2

For CSS stylesheets, use the escape in the content property

\02AC
3

Unicode U+02AC — bilabial percussive (IPA Extensions)

4

Not the same as ¬ (NOT SIGN, &not;)

5

Previous: Writing Hand (✍)   Next: XOR (⊻)

❓ Frequently Asked Questions

Use &#x02AC; (hex), &#684; (decimal), or \02AC in CSS content. There is no named HTML entity. In UTF-8 you can also type ʬ directly.
U+02AC (LATIN SMALL LETTER BILABIAL PERCUSSIVE). IPA Extensions block U+0250–U+02AF. Hex 02AC, decimal 684. IPA bilabial percussive symbol.
For linguistic content, phonetic transcriptions, IPA documentation, dictionaries, language-learning materials, academic publications, and specialized phonetic notation.
HTML entities (&#684; or &#x02AC;) go directly in markup. The CSS escape \02AC is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. IPA Extensions characters like ʬ use numeric codes. Use &#684; or &#x02AC; in HTML, or \02AC in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — IPA symbols, phonetics, 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