HTML Entity for Retroflex Click (ǃ)

What You'll Learn
How to display the Retroflex Click symbol (ǃ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01C3 (LATIN LETTER RETROFLEX CLICK) in the Latin Extended-B block (U+0180–U+024F)—used in the International Phonetic Alphabet (IPA) to represent a retroflex click sound in linguistic and phonetic documentation.
Render it with ǃ, ǃ, or CSS escape \01C3. There is no named HTML entity. Do not confuse ǃ with the ASCII exclamation mark (!, U+0021)—they look similar but are different characters.
⚡ Quick Reference — Retroflex Click
U+01C3Latin Extended-B (U+0180–U+024F)
ǃHexadecimal reference
ǃDecimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+01C3
Hex code ǃ
HTML code ǃ
Named entity (none)
CSS code \01C3
Meaning Latin letter retroflex click (IPA)
Related U+0021 = exclamation mark (!)
U+0322 = retroflex hook below (̢)
Block Latin Extended-B (U+0180–U+024F)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: "\01C3";
}
</style>
</head>
<body>
<p>Retroflex click (hex): ǃ</p>
<p>Retroflex click (decimal): ǃ</p>
<p id="point">Retroflex click (CSS): </p>
</body>
</html>🌐 Browser Support
The Retroflex Click symbol (ǃ) is widely supported in all modern browsers:
👀 Live Preview
See the Retroflex Click symbol (ǃ) in phonetic contexts:
🧠 How It Works
Hexadecimal Code
ǃ uses the Unicode hexadecimal value 01C3 to display the retroflex click symbol.
Decimal HTML Code
ǃ uses the decimal Unicode value 451 for the same character.
CSS Entity
\01C3 is used in CSS stylesheets in the content property of pseudo-elements for phonetic labels or icons.
Retroflex click result
All three methods render ǃ. Unicode U+01C3 in Latin Extended-B. Next: Retroflex Hook Below.
Use Cases
The Retroflex Click symbol (ǃ) is commonly used in:
International Phonetic Alphabet charts and phonetic transcriptions.
Academic papers, dictionaries, and language documentation projects.
Pronunciation guides and phonetics courses for click languages.
Linguistic corpora and phonetic analysis tools on the web.
Character pickers, entity documentation, and IPA symbol guides.
Pair ǃ with a text description of the sound; use IPA-friendly fonts.
💡 Best Practices
Do
- Use
ǃorǃfor inline IPA retroflex click marks - Set
<meta charset="utf-8">for reliable rendering - Use a font with IPA coverage (e.g. Doulos SIL, Charis SIL)
- Use ǃ for the retroflex click—not ASCII
! - Pick one numeric style per project for consistency
Don’t
- Substitute ASCII exclamation mark
!for ǃ in phonetic text - Use padded Unicode notation like U+001C3—the correct value is
U+01C3 - Use CSS escape
\01C3in HTML text nodes - Assume every system font renders Latin Extended-B glyphs
- Confuse retroflex click ǃ with alveolar click ǂ
Key Takeaways
Two HTML numeric references plus CSS for U+01C3
ǃ ǃFor CSS stylesheets, use \01C3 in the content property
Unicode U+01C3 — LATIN LETTER RETROFLEX CLICK (IPA)
Distinct from exclamation mark ! (U+0021) and alveolar click ǂ
Previous: Response (℟) Next: Retroflex Hook Below
❓ Frequently Asked Questions
ǃ (hex), ǃ (decimal), or \01C3 in CSS content. There is no named entity. All three render ǃ.U+01C3 (LATIN LETTER RETROFLEX CLICK). Latin Extended-B block (U+0180–U+024F). Hex 01C3, decimal 451.Explore More HTML Entities!
Discover 1500+ HTML character references — IPA symbols, punctuation, math operators, and more.
8 people found this page helpful
