HTML Entity for Latin Letter Reversed Glottal Stop with Stroke (ʢ)

What You'll Learn
How to display ʢ (LATIN LETTER REVERSED GLOTTAL STOP WITH STROKE) in HTML using hexadecimal, decimal, and CSS escape methods. Despite the URL slug question-mark-reversed-stop-stroke, this character is not a reversed punctuation question mark—it is an IPA Extensions letter for a reversed glottal stop with a stroke diacritic.
It is U+02A2 in the IPA Extensions block (U+0250–U+02AF). Use ʢ, ʢ, or CSS \02A2. There is no named HTML entity. Do not confuse ʢ with ʡ (glottal stop with stroke) or ¿ (inverted question mark).
⚡ Quick Reference — Reversed Glottal Stop with Stroke
U+02A2IPA Extensions
ʢHexadecimal reference
ʢDecimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+02A2
Hex code ʢ
HTML code ʢ
Named entity (none)
CSS code \02A2
Meaning Latin letter reversed glottal stop with stroke (ʢ)
Related U+02A1 = Glottal stop with stroke (ʡ)
U+0294 = Latin letter glottal stop (ʔ)
U+00BF = Inverted question mark (¿)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing ʢ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\02A2";
}
</style>
</head>
<body>
<p>Hex: ʢ</p>
<p>Decimal: ʢ</p>
<p>CSS: <span id="point"></span></p>
</body>
</html>🌐 Browser Support
ʢ renders when fonts include IPA Extensions (U+0250–U+02AF):
👀 Live Preview
See ʢ rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
ʢ uses the Unicode hexadecimal value 02A2 to display the reversed glottal stop with stroke.
Decimal HTML Code
ʢ uses the decimal Unicode value 674 to display the same character.
CSS Entity
\02A2 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce: ʢ. Unicode U+02A2 in IPA Extensions (U+0250–U+02AF). No named HTML entity exists.
Use Cases
The Latin letter reversed glottal stop with stroke (ʢ) commonly appears in:
Specialized phonetic transcriptions using IPA Extensions symbols.
Academic papers, textbooks, and phonology references.
Writing systems that use this extended Latin letter.
Pronunciation guides and advanced phonetics exercises.
Character pickers and IPA Extensions documentation.
HTML entity encoding examples for phonetic symbols.
Pair ʢ with a phonetic description for screen readers.
💡 Best Practices
Do
- Use
ʢorʢfor the ʢ glyph - Distinguish ʢ from ʡ (glottal stop with stroke) and ʔ (glottal stop)
- Use IPA or linguistics fonts for professional notation
- Pick one style (hex or decimal) per project
- Test rendering across browsers and devices
Don’t
- Assume this is reversed punctuation—it is U+02A2 ʢ
- Substitute ¿ or
¿when ʢ is intended - Assume a named entity exists—there is none
- Use CSS escape
\02A2inside HTML text nodes - Use HTML entities in JS (use
\u02A2instead)
Key Takeaways
Two HTML numeric references render ʢ
ʢ ʢFor CSS stylesheets, use the escape in the content property
\02A2Unicode U+02A2 is LATIN LETTER REVERSED GLOTTAL STOP WITH STROKE
For ¿ use U+00BF with ¿
Previous: Pharyngeal Voiced Fricative (ʕ) Next: Question Mark Small
❓ Frequently Asked Questions
ʢ (hex), ʢ (decimal), or \02A2 in CSS content. There is no named HTML entity for this symbol.U+02A2 (LATIN LETTER REVERSED GLOTTAL STOP WITH STROKE). IPA Extensions block. Hex 02A2, decimal 674.¿ on the inverted-question-mark page.ʢ or ʢ, or the CSS escape \02A2.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
