HTML Entity for Dental Click (ǀ)

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

What You'll Learn

How to display the Dental Click symbol (ǀ) in HTML using hexadecimal, decimal, and CSS entity methods. This character is U+01C0 (LATIN LETTER DENTAL CLICK) in the Latin Extended-B block (U+0180–U+024F), used in the International Phonetic Alphabet (IPA) and in orthographies of African languages (e.g. Zulu, Xhosa) for dental click consonants.

There is no named HTML entity for U+01C0. Use ǀ, ǀ, or \01C0 in CSS content. Do not confuse ǀ with the ASCII vertical bar | (U+007C). See also Alveolar Click for another IPA click letter.

⚡ Quick Reference — Dental Click

Unicode U+01C0

Latin Extended-B (U+0180–U+024F)

Hex Code ǀ

Hexadecimal reference

HTML Code ǀ

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01C0
Hex code       ǀ
HTML code      ǀ
Named entity   —
CSS code       \01C0
1

Complete HTML Example

This example demonstrates the Dental Click symbol (ǀ) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01C0";
  }
 </style>
</head>
<body>
<p>Dental Click using Hexadecimal: &#x01C0;</p>
<p>Dental Click using HTML Code: &#448;</p>
<p id="point">Dental Click using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+01C0 is supported in modern browsers; use a font with Latin Extended-B and IPA coverage for consistent glyph display:

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

👀 Live Preview

See the Dental Click symbol (ǀ) in phonetic and linguistic contexts:

IPA Dental click: ǀ
vs pipe ǀ (dental click)   | (ASCII pipe U+007C)
Orthography Click consonant ǀ in Zulu/Xhosa-style writing
Large glyph ǀ
Monospace refs &#x01C0; &#448; \01C0

🧠 How It Works

1

Hexadecimal Code

&#x01C0; uses the Unicode hexadecimal value 01C0 to display the dental click symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\01C0 is used in CSS stylesheets, particularly in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce the Dental Click symbol: ǀ. Unicode U+01C0 is in Latin Extended-B (U+0180–U+024F). No named HTML entity exists.

Use Cases

The Dental Click symbol (ǀ) is commonly used in:

🔤 IPA & phonetics

International Phonetic Alphabet transcriptions for dental click consonants.

🌍 African orthographies

Zulu, Xhosa, and other languages that write click consonants.

📚 Linguistics

Academic papers, textbooks, and language learning materials on click sounds.

📖 Unicode references

Documentation for Latin Extended-B and IPA click letters.

🎓 Education

Language courses and tutorials that teach or display click consonants.

📄 Entity guides

HTML entity lists and phonetic symbol reference pages.

💡 Best Practices

Do

  • Use &#x01C0; or &#448; since no named entity exists
  • Choose fonts with Latin Extended-B and IPA coverage (Doulos SIL, Charis SIL, Noto Sans)
  • Use ǀ for dental clicks in phonetic or language content
  • Use \01C0 only inside CSS content
  • Keep hex or decimal style consistent across the document

Don’t

  • Confuse ǀ (dental click U+01C0) with the ASCII pipe | (U+007C)
  • Assume a named entity exists—U+01C0 has none
  • Rely on fonts that omit Latin Extended-B (glyph may show as a box)
  • Put CSS escape \01C0 in HTML text nodes
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

No named entity—use numeric references

&#x01C0; &#448;
2

For CSS stylesheets, use the escape in the content property

\01C0
3

U+01C0 LATIN LETTER DENTAL CLICK

4

IPA and African language orthographies—not the same as |

5

Three methods, one glyph — widely supported in modern browsers with suitable fonts

❓ Frequently Asked Questions

Use &#x01C0; (hex), &#448; (decimal), or \01C0 in CSS content. There is no named HTML entity. All produce ǀ.
U+01C0 (LATIN LETTER DENTAL CLICK). Latin Extended-B (U+0180–U+024F). Hex 01C0, decimal 448. Used in IPA and African languages for dental click consonants.
In linguistic content, IPA transcriptions, orthographies with click consonants (e.g. Zulu, Xhosa), academic papers, language learning materials, and character reference documentation.
HTML numeric references (&#448; or &#x01C0;) go in markup. The CSS escape \01C0 is used in stylesheets, typically in the content property of pseudo-elements. Both render ǀ. No named entity.
It represents a dental click consonant in the IPA. In languages like Zulu it is used in writing for the dental click sound. It is not the ASCII vertical bar | (U+007C), though the glyphs can look similar in some fonts.

Explore More HTML Entities!

Discover 1500+ HTML character references — IPA click letters, digraphs, math operators, 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