HTML Entity for Inverted Glottal Stop (ƾ)

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

What You'll Learn

How to display the Inverted Glottal Stop (ƾ) in HTML using hexadecimal, decimal, and CSS escape methods. This character (ƾ) is used in linguistics, IPA, and some minority language orthographies to represent an inverted glottal stop.

It is U+01BE (LATIN SMALL LETTER INVERTED GLOTTAL STOP) in the Latin Extended-B block (U+0180–U+024F). Use ƾ, ƾ, or CSS \01BE. There is no named HTML entity. Do not confuse U+01BE (ƾ) with U+02C0 (modifier letter glottal stop ˀ).

⚡ Quick Reference — Inverted Glottal Stop

Unicode U+01BE

Latin Extended-B

Hex Code ƾ

Hexadecimal reference

HTML Code ƾ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01BE
Hex code       ƾ
HTML code      ƾ
Named entity   (none)
CSS code       \01BE
Meaning        Inverted glottal stop (ƾ)
Glyph          ƾ
Example        Phonetic: ƾ word-medial
Related        U+02C0 = modifier glottal stop
1

Complete HTML Example

This example shows the Inverted Glottal Stop (U+01BE) using hexadecimal code, decimal HTML code, and a CSS content escape. This character has no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01BE";
  }
 </style>
</head>
<body>
<p>Inverted Glottal Stop using Hexadecimal: &#x01BE;</p>
<p>Inverted Glottal Stop using Decimal: &#446;</p>
<p id="point">Inverted Glottal Stop using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Inverted Glottal Stop (U+01BE) renders when fonts support Latin Extended-B (U+0180–U+024F):

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

👀 Live Preview

See the Inverted Glottal Stop (ƾ) rendered (font-dependent):

Glyph ƾ
In word aƾa
ƾ vs ˀ U+01BE: ƾ   U+02C0: ˀ
Named entity (none) — use numeric codes
Numeric refs &#x01BE; &#446; \01BE

🧠 How It Works

1

Hexadecimal Code

&#x01BE; uses the Unicode hexadecimal value 01BE to display the Inverted Glottal Stop (ƾ).

HTML markup
2

Decimal HTML Code

&#446; uses the decimal Unicode value 446 for the same character.

HTML markup
3

CSS Entity

\01BE is used in CSS stylesheets in the content property, often on ::after following a base character in markup.

CSS stylesheet
4

No Named Entity

U+01BE has no standard &...; named form. Use hex, decimal, or CSS escape only.

HTML markup
=

Same visual result

All three methods produce ƾ (ƾ). Unicode U+01BE is in Latin Extended-B. Next: Inverted Ohm Sign (U+2127).

Use Cases

The Inverted Glottal Stop (U+01BE) is commonly used in:

🎤 IPA

IPA and phonetic notation for the inverted glottal stop (ƾ).

📝 Phonology

Linguistic papers and language documentation.

📚 Orthography

Minority language writing systems that use ƾ.

📄 Academic

Phonetics, phonology, and descriptive linguistics research.

🎓 Dictionaries

Educational content and dictionary entries with phonetic forms.

🌐 Typography

Fonts with Latin Extended-B for correct rendering of U+01BE.

💡 Best Practices

Do

  • Use &#x01BE; or &#446; in HTML content
  • Use fonts with Latin Extended-B (Charis SIL, DejaVu Sans, Doulos SIL)
  • Set <meta charset="utf-8">
  • Pick one numeric style per project
  • Provide IPA or language context where helpful

Don’t

  • Confuse U+01BE (ƾ) with U+02C0 (modifier glottal stop ˀ)
  • Expect a named HTML entity for U+01BE
  • Use CSS \01BE inside HTML text nodes
  • Use fonts without Latin Extended-B support
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS for U+01BE

&#x01BE; &#446;
2

For CSS, use \01BE in the content property

3

Unicode U+01BE — LATIN SMALL LETTER INVERTED GLOTTAL STOP

4

Latin Extended-B block; glyph ƾ (ƾ)

❓ Frequently Asked Questions

Use &#x01BE; (hex), &#446; (decimal), or \01BE in CSS content. There is no named entity. All methods render ƾ (ƾ) when the font supports U+01BE.
U+01BE (LATIN SMALL LETTER INVERTED GLOTTAL STOP). Latin Extended-B block (U+0180–U+024F). Hex 01BE, decimal 446. Used in linguistics and some orthographies.
In IPA and phonetic transcription, linguistic resources, minority language orthographies, academic phonetics, and any content requiring correct phonetic or orthographic representation of ƾ.
HTML references (&#446; or &#x01BE;) go in markup. The CSS escape \01BE is used in stylesheets, typically on ::before or ::after. Both render ƾ (ƾ).
Named entities cover common characters; Latin Extended-B symbols like U+01BE use numeric hex or decimal codes or CSS escapes. That is standard for many extended Latin and phonetic characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — IPA symbols, punctuation, linguistics, 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