HTML Entity for Bidental Percussive (ʭ)

What You'll Learn
How to display the Bidental Percussive letter (ʭ) in HTML and CSS. This character is U+02AD in the IPA Extensions block (U+0250–U+02AF). In the International Phonetic Alphabet it marks a bidental percussive consonant: a percussive sound made with upper and lower teeth. It appears in narrow phonetic transcription, linguistic corpora, and clinical speech notes.
There is no named HTML entity for U+02AD. Use ʭ or ʭ in markup, or \02AD in stylesheet content. Stack IPA-capable fonts (for example Gentium Plus, Charis SIL, Doulos SIL, or Noto Sans IPA) and set lang appropriately so ʭ matches the rest of your transcription.
⚡ Quick Reference — Bidental Percussive
U+02ADIPA Extensions
ʭHexadecimal reference
ʭDecimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+02AD
Hex code ʭ
HTML code ʭ
Named entity —
CSS code \02ADComplete HTML Example
This example shows Bidental Percussive using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\02AD";
}
</style>
</head>
<body>
<p>Bidental Percussive using Hexa Decimal: ʭ</p>
<p>Bidental Percussive using HTML Code: ʭ</p>
<p id="point">Bidental Percussive using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+02AD is a standard BMP code point; rendering depends on an IPA-capable font in your stack:
👀 Live Preview
See ʭ with other IPA letters in a phonetics-friendly stack:
🧠 How It Works
Hexadecimal Code
ʭ references code point U+02AD using hex digits 02AD after the #x prefix.
Decimal HTML Code
ʭ is the decimal equivalent (685) for the same Bidental Percussive letter.
CSS Entity
\02AD is the CSS escape for U+02AD, used in the content property of ::before or ::after.
Same visual result
Hex, decimal, and CSS escapes all produce ʭ. There is no named HTML entity for U+02AD.
Use Cases
The Bidental Percussive letter (ʭ) is commonly used for:
Narrow and comparative transcriptions where percussive articulation must be spelled out.
Slides and handouts on manner of articulation and rare IPA letters.
Web-facing concordance lines or dictionary entries stored as UTF-8 HTML.
Session notes describing atypical percussive articulations in disordered speech.
Field reports when a language’s inventory includes this rare letter (verify with primary sources).
Rendering checks for SIL or custom IPA webfonts before publication.
Expose “bidental percussive” or IPA X-SAMPA alongside the glyph when readers may not know ʭ by sight.
💡 Best Practices
Do
- Load Gentium Plus, Charis SIL, Doulos SIL, or Noto Sans/Serif with IPA coverage via
@font-faceor Google Fonts where available - Use UTF-8 and numeric references interchangeably; both are fine for static and CMS content
- Document your transcription standard (IPA chart revision, language-specific conventions)
- Use
\02ADonly inside CSScontent, not inside HTML text nodes - Pair rare glyphs with a spoken or written gloss for learners
Don’t
- Confuse bidental percussive ʭ with unrelated Latin letters or combining marks
- Assume every visitor’s default sans font draws ʭ with IPA-correct proportions
- Label dialect sounds without citations from linguistics references
- Ship standalone ʭ icons in UI with no textual equivalent for assistive tech
- Mix legacy Windows-1252 pages with raw ʭ without declaring charset UTF-8
Key Takeaways
Two numeric references render the same glyph
ʭ ʭIn CSS content, use the escape
\02ADU+02AD is IPA Extensions; no &name; entity exists
IPA fonts are part of the solution, not just the HTML reference
Add glosses or X-SAMPA when the audience is not phonetics-trained
❓ Frequently Asked Questions
ʭ (hex), ʭ (decimal), or \02AD in CSS content. There is no named entity; all valid methods render ʭ.U+02AD (hex 02AD, decimal 685). IPA Extensions block; Unicode name LATIN LETTER BIDENTAL PERCUSSIVE.\02AD escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.ʭ, ʭ, or \02AD in CSS depending on whether you are authoring markup or styles.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
