HTML Entity for Latin Letter Glottal Stop (ʔ)

What You'll Learn
How to display ʔ (LATIN LETTER GLOTTAL STOP) in HTML using hexadecimal, decimal, and CSS escape methods. Despite the URL slug question-mark-latin, this character is not a Latin punctuation question mark—it is the standard IPA symbol for a glottal stop.
It is U+0294 in the IPA Extensions block (U+0250–U+02AF). Use ʔ, ʔ, or CSS \0294. There is no named HTML entity. Do not confuse ʔ with ? (U+003F) or Ɂ (capital glottal stop).
⚡ Quick Reference — Latin Letter Glottal Stop
U+0294IPA Extensions
ʔHexadecimal reference
ʔDecimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+0294
Hex code ʔ
HTML code ʔ
Named entity (none)
CSS code \0294
Meaning Latin letter glottal stop (ʔ)
Related U+0241 = Latin capital glottal stop (Ɂ)
U+02C0 = Modifier letter glottal stop (ˀ)
U+003F = 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: "\0294";
}
</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 0294 to display the glottal stop letter.
Decimal HTML Code
ʔ uses the decimal Unicode value 660 to display the same character.
CSS Entity
\0294 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+0294 in IPA Extensions (U+0250–U+02AF). No named HTML entity exists.
Use Cases
The Latin letter glottal stop (ʔ) commonly appears in:
Standard symbol for a glottal stop in phonetic transcription.
Academic papers, textbooks, and phonology references.
Writing systems for languages with glottal stops (e.g. Hawaiian, Arabic transliteration).
Pronunciation guides and phonetics exercises.
Character pickers and IPA Extensions documentation.
HTML entity encoding examples for phonetic symbols.
Pair ʔ with “glottal stop” in surrounding text for clarity.
💡 Best Practices
Do
- Use
ʔorʔfor the glottal stop glyph - Distinguish ʔ from Ɂ (capital) and ˀ (modifier letter)
- 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 a Latin punctuation question mark—it is U+0294 ʔ
- Substitute ? or
?when ʔ is intended - Assume a named entity exists—there is none
- Use CSS escape
\0294inside HTML text nodes - Use HTML entities in JS (use
\u0294instead)
Key Takeaways
Two HTML numeric references render ʔ
ʔ ʔFor CSS stylesheets, use the escape in the content property
\0294Unicode U+0294 is LATIN LETTER GLOTTAL STOP in IPA Extensions
Not the punctuation ?—use ? for U+003F
Previous: Inverted Closed Open E (ʖ) Next: Question Mark Reverse
❓ Frequently Asked Questions
ʔ (hex), ʔ (decimal), or \0294 in CSS content. There is no named HTML entity for this symbol.U+0294 (LATIN LETTER GLOTTAL STOP). IPA Extensions block. Hex 0294, decimal 660.?.ʔ or ʔ, or the CSS escape \0294.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
