HTML Entity for Alveolar Click (ǂ)

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

What You'll Learn

How to display Latin letter alveolar click (ǂ) in HTML using numeric references or a CSS escape. Unicode’s official name is Latin letter alveolar click (U+01C2); it is used in phonetic notation for the alveolar click (and related typographic traditions).

The character sits in the Latin Extended-B block (roughly U+0180U+024F). Use ǂ or ǂ in markup; there is no standard short named HTML entity. In CSS content, use \01C2 or \0001C2 so the escape parses unambiguously. Pair with fonts that cover Latin Extended-B for predictable rendering.

⚡ Quick Reference — Alveolar Click (ǂ)

Unicode U+01C2

Latin Extended-B

Hex Code ǂ

Hexadecimal reference

HTML Code ǂ

Decimal reference

Named Entity

Use numeric references (no standard short name)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01C2
Hex code       ǂ
HTML code      ǂ
Named entity   (none standard)
CSS code       \01C2
1

Complete HTML Example

This example shows ǂ (Latin letter alveolar click) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01C2";
  }
 </style>
</head>
<body>

<p>Alveolar Click using Hexa Decimal: &#x01C2;</p>
<p>Alveolar Click using HTML Code: &#450;</p>
<p id="point">Alveolar Click using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

Numeric references and CSS escapes for U+01C2 are supported in all modern browsers. Final appearance depends on fonts that cover Latin Extended-B (and good IPA or linguistics stacks):

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

👀 Live Preview

See ǂ in sample strings (rendering depends on font):

Isolated glyph ǂ
In brackets [ǂ] Latin letter alveolar click
Numeric refs Same letter as &#x01C2; or &#450; in UTF-8 text.
Monospace U+01C2 LATIN LETTER ALVEOLAR CLICK
Font note SIL or other Latin Extended-B–capable fonts give the most predictable ǂ shape.

🧠 How It Works

1

Hexadecimal Code

&#x01C2; references Unicode 01C2 in hexadecimal. The x prefix marks a hex numeric character reference.

HTML markup
2

Decimal HTML Code

&#450; is the decimal code point 450 for the same letter.

HTML markup
3

CSS Escape

\01C2 (or \0001C2) in content on ::before / ::after emits U+01C2 without raw UTF-8 in HTML.

CSS stylesheet
=

Same code point

All paths expose U+01C2 (Latin Extended-B). Official name: Latin letter alveolar click. There is no standard short named HTML entity; use numbers or UTF-8.

Use Cases

Latin letter alveolar click (ǂ, U+01C2) fits these kinds of content:

🗣 IPA & phonetics

Transcriptions and charts that use the Latin click letter ǂ.

📚 Linguistics

Papers and resources on click consonants in African and other languages.

📖 Language documentation

Grammars and field notes that record alveolar clicks in orthography.

🎓 Teaching

Courseware comparing ǂ with other click letters and IPA symbols.

📚 Unicode references

Character tables for Latin Extended-B.

💻 Dictionaries & apps

Pronunciation keys when the dictionary uses this code point.

🎨 Typography

Font specimens showing extended Latin coverage.

💡 Best Practices

Do

  • Use UTF-8; prefer explicit &#x01C2; / &#450; when you need portable markup
  • Choose font stacks that include Latin Extended-B for linguistics content
  • Test ǂ on target devices; some default UI fonts substitute or box less common letters
  • Use \01C2 or \0001C2 only in CSS content, not inside HTML text nodes
  • Provide context (gloss or language name) when ǂ might be unfamiliar to readers

Don’t

  • Assume every system font draws ǂ identically to a print IPA chart
  • Paste CSS escapes into HTML body text (wrong layer)
  • Confuse U+01C2 with unrelated punctuation; it is a dedicated letter for phonetic use
  • Rely on a non-existent standard short named entity for U+01C2
  • Ship pages without <meta charset="utf-8"> when mixing many Unicode letters

Key Takeaways

1

Two numeric references render ǂ (U+01C2)

&#x01C2; &#450;
2

In CSS, use a hex escape in content on pseudo-elements

\01C2
3

Unicode U+01C2 — Latin letter alveolar click

4

No standard short named entity — use numbers or UTF-8

5

Latin Extended-B; verify fonts for linguistics-heavy layouts

❓ Frequently Asked Questions

Use &#x01C2; (hex) or &#450; (decimal) in text. For CSS content, escapes such as \01C2 or \0001C2 work.
U+01C2 (hex 01C2, decimal 450). Official name: Latin letter alveolar click. Block: Latin Extended-B.
When your orthography or phonetic chart specifies this letter: linguistics, dictionaries, language documentation, and typography demos for extended Latin.
Markup uses &#450; or &#x01C2; in text nodes. CSS uses escapes such as \01C2 inside content rules. Same character; different syntax layer.
There is no widely standardized short named entity for ǂ in HTML. Use numeric references or UTF-8.

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