HTML Entity for Ww Stack (ʬ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+02AC

What Is Ww Stack?

Ww Stack (ʬ) is Unicode U+02AC (LATIN LETTER BILABIAL PERCUSSIVE) in IPA Extensions. It is a phonetic letter for a rare bilabial percussive speech sound. HTML5 has no named entity.

Remember
Character     ʬ
Unicode       U+02AC
Hex entity    ʬ
Decimal       ʬ
CSS escape    \02AC
Named entity  (none)
Official name LATIN LETTER BILABIAL PERCUSSIVE
Not the same  ʭ (bidental)

Prefer ʬ or ʬ in HTML markup. You can also type ʬ in UTF-8. There is no named entity. Related: bidental percussive (U+02AD).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterʬHTML text (UTF-8)
Hex entityʬHTML markup (preferred)
Decimal entityʬHTML markup
CSS escape\02ACStylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Bilabial percussive in IPAʬ or type ʬ
Bidental percussiveʭ (ʭ)
Need an entity in HTML sourceʬ or ʬ
Generated text via ::before / ::aftercontent: "\02AC"

Live Preview

Ww Stack (bilabial percussive) in phonetic study contexts.

Inline IPA [ʬ]
Large glyph ʬ
With gloss ʬ bilabial percussive
Compared ʬ  |  ʭ
With entities Hex: ʬ | Decimal: ʬ

Complete HTML Example

One page that shows this letter with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ʬ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Ww Stack (ʬ)</title>
  <style>
    #point::after {
      content: "\02AC";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x02AC;</p>
  <p>Using HTML Code: &#684;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ʬ</p>
  <p>Gloss: bilabial percussive</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+02AC → &#x02AC; in HTML. The browser turns it into ʬ.

2. Decimal: same code point as 684 → &#684;. Same result as hex.

3. CSS: use \02AC in content (not an HTML entity). #point::after appends that ʬ after the paragraph text.

4. Typed / gloss: paste ʬ in UTF-8, and add a short gloss so non-specialists understand the IPA letter.

5. No named entity: HTML5 does not define a name for U+02AC — use numeric references or type the character.

Pitfalls & Tips

Common mistakes when working with U+02AC.

Named?

No named entity

HTML5 does not define a named entity for U+02AC. Use &#x02AC; or &#684;.

vs ʭ

Not bidental percussive

ʭ (U+02AD) is bidental. ʬ is bilabial. Related IPA letters — different code points.

Gloss

Explain the sound

Most readers will not recognize ʬ. Add a short gloss like “bilabial percussive.”

a11y

Do not rely on the glyph alone

Screen readers may skip or misname IPA letters. Provide visible gloss text next to the symbol.

CSS vs HTML

Do not mix escapes

\02AC belongs in CSS strings. &#x02AC; / &#684; belong in HTML.

Fonts

Need IPA coverage

Some UI fonts omit IPA Extensions. Prefer fonts with solid phonetic coverage (for example Doulos SIL or Charis SIL).

Browser Support

Ww Stack / bilabial percussive (U+02AC) and its entity forms (&#x02AC;, &#684;, CSS \\02AC) are supported in all mainstream browsers. Visible glyphs depend on IPA Extensions font coverage.

✓ Universal support

Ww Stack (&#x02AC;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes
U+02AC / entities Full support

Bottom line: Prefer &#x02AC; or &#684; in HTML. Use \\02AC only inside CSS content. There is no named entity. Always gloss the IPA letter for beginners.

Key Takeaways

  • Unicode: this letter is U+02AC (decimal 684) — LATIN LETTER BILABIAL PERCUSSIVE.
  • HTML: use &#x02AC; or &#684; — no named entity; typing ʬ also works.
  • CSS: use \02AC inside content for generated text.
  • Watch out: ʬ ≠ ʭ; always gloss for non-specialists.

One line: U+02AC → &#x02AC; / &#684; / CSS \02AC.

Frequently Asked Questions

Use &#x02AC; (hex), &#684; (decimal), type ʬ directly in UTF-8, or the CSS escape \02AC in content. There is no named HTML entity.
U+02AC (LATIN LETTER BILABIAL PERCUSSIVE). Hex 02AC, decimal 684. It belongs to IPA Extensions (U+0250–U+02AF).
No. HTML5 does not define a named entity for this character. Use numeric forms &#684; or &#x02AC;.
No. ʬ is bilabial percussive (U+02AC). ʭ is bidental percussive (U+02AD). Related IPA letters, different code points.
Use it in phonetics and linguistics for the bilabial percussive sound. Pair the glyph with a short gloss so beginners know it is an IPA letter.
HTML entities (&#684; or &#x02AC;) go in markup. The CSS escape \02AC goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Ww Stack (ʬ) is Unicode U+02AC (decimal 684) — official name LATIN LETTER BILABIAL PERCUSSIVE in IPA Extensions. HTML5 has no named entity — use &#x02AC; or &#684;. It marks a rare bilabial percussive speech sound (lips slapped together). The informal name “ww stack” comes from the glyph’s stacked-w look. Do not confuse it with bidental percussive ʭ (U+02AD).

Next: XOR

Learn the HTML entity for XOR / veebar (U+22BB).

Continue tutorial →

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