| 記号名 | Latin Letter Dental Click |
| Unicodeバージョン | 1.1 |
| Unicode | U+01C0 |
| Unicodeブロック | |
| 一般カテゴリ | Other Letter (Lo) |
| CSSコード | \01C0 |
| 16進コード | 0x01C0 |
| HTMLコード | ǀ |
| LaTeX | \text{LATINLETTERDENTALCLICK} |
| 記号 | ǀ |
| URLエンコード(UTF-8パーセント) | %C7%80 |
| 読み上げ名 / スクリーンリーダー | Latin Letter Dental Click |
| UTF-8 | C7 80 |
| UTF-16 | 01C0 |
| UTF-32 | 000001C0 |
1\documentclass{article}2\usepackage{pifont}3\text{LATINLETTERDENTALCLICK}4\end{document}以下の方法でほとんどの最新デバイスでlatin letter dental click記号を入力できます:
Alt + 448 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin letter dental click", or use Unicode Hex Input with 01C0.
Ctrl + Shift + U, type 01c0, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.latin-letter-dental-click::before { content: "\01C0"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ǀ</span>各プログラミング言語におけるLatin Letter Dental Click記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u01C0' or String.fromCodePoint(448) |
| Python | '\N{LATIN LETTER DENTAL CLICK}' or chr(448) |
| Rust | '\u{01C0}' |
| C / C++ | UTF-8 source or wchar_t with U+01C0 |
| Go | string(rune(0x01C0)) |
| Ruby | "\u{01C0}" |