HTML Entity for Latin Letter Glottal Stop with Stroke (ʡ)

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

What You'll Learn

How to display ʡ (LATIN LETTER GLOTTAL STOP WITH STROKE) in HTML using hexadecimal, decimal, and CSS escape methods. Despite the URL slug question-mark-stroke, this character is not a punctuation question mark with a stroke—it is an IPA Extensions letter for a glottal stop with a stroke diacritic.

It is U+02A1 in the IPA Extensions block (U+0250–U+02AF). Use ʡ, ʡ, or CSS \02A1. There is no named HTML entity. Do not confuse ʡ with ɂ (Latin Extended-B variant) or ? (U+003F).

⚡ Quick Reference — Glottal Stop with Stroke

Unicode U+02A1

IPA Extensions

Hex Code ʡ

Hexadecimal reference

HTML Code ʡ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+02A1
Hex code       ʡ
HTML code      ʡ
Named entity   (none)
CSS code       \02A1
Meaning        Latin letter glottal stop with stroke (ʡ)
Related        U+0242 = Latin small glottal stop with stroke (ɂ)
               U+02A2 = Reversed glottal stop with stroke (ʢ)
               U+0294 = Latin letter glottal stop (ʔ)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing ʡ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\02A1";
  }
 </style>
</head>
<body>
<p>Hex: &#x02A1;</p>
<p>Decimal: &#673;</p>
<p>CSS: <span id="point"></span></p>
</body>
</html>
Try it Yourself

🌐 Browser Support

ʡ renders when fonts include IPA Extensions (U+0250–U+02AF):

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See ʡ rendered live in different contexts:

Glyph ʡ
IPA context Phonetic symbol ʡ in transcription
Compare ʡ IPA stroke   ɂ Latin-B   ʢ reversed stroke
Not the same ʡ is not ? (punctuation) or a stylized ? with a line
Numeric refs &#x02A1; &#673; \02A1

🧠 How It Works

1

Hexadecimal Code

&#x02A1; uses the Unicode hexadecimal value 02A1 to display the glottal stop with stroke.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce: ʡ. Unicode U+02A1 in IPA Extensions (U+0250–U+02AF). No named HTML entity exists.

Use Cases

The Latin letter glottal stop with stroke (ʡ) commonly appears in:

🎙 IPA Notation

Phonetic transcriptions using IPA Extensions symbols.

📚 Linguistics

Academic papers, textbooks, and phonology references.

🌍 Orthographies

Writing systems that use this extended Latin letter.

🎓 Language Learning

Pronunciation guides and phonetics exercises.

📋 Unicode References

Character pickers and IPA Extensions documentation.

💻 Dev Tutorials

HTML entity encoding examples for phonetic symbols.

♿ Accessibility

Pair ʡ with a phonetic description for screen readers.

💡 Best Practices

Do

  • Use &#x02A1; or &#673; for the ʡ glyph
  • Distinguish ʡ from ɂ (Latin Extended-B) and ʢ (reversed stroke)
  • 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 punctuation ? with a stroke—it is U+02A1 ʡ
  • Substitute ? or &quest; when ʡ is intended
  • Assume a named entity exists—there is none
  • Use CSS escape \02A1 inside HTML text nodes
  • Use HTML entities in JS (use \u02A1 instead)

Key Takeaways

1

Two HTML numeric references render ʡ

&#x02A1; &#673;
2

For CSS stylesheets, use the escape in the content property

\02A1
3

Unicode U+02A1 is LATIN LETTER GLOTTAL STOP WITH STROKE

4

Not the punctuation ?—use &quest; for U+003F

❓ Frequently Asked Questions

Use &#x02A1; (hex), &#673; (decimal), or \02A1 in CSS content. There is no named HTML entity for this symbol.
U+02A1 (LATIN LETTER GLOTTAL STOP WITH STROKE). IPA Extensions block. Hex 02A1, decimal 673.
No. This page covers U+02A1 (ʡ), an IPA Extensions letter. The punctuation question mark is U+003F (?), which has the named entity &quest;.
No. Use numeric references &#x02A1; or &#673;, or the CSS escape \02A1.
In IPA transcriptions, linguistic papers, phonetics textbooks, and orthographies that use the glottal stop with stroke.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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