| 記号名 | Latin Letter Glottal Stop |
| Unicodeバージョン | 1.1 |
| Unicode | U+0294 |
| Unicodeブロック | |
| 一般カテゴリ | Other Letter (Lo) |
| CSSコード | \0294 |
| 16進コード | 0x0294 |
| HTMLコード | ʔ |
| LaTeX | \text{LATINLETTERGLOTTALSTOP} |
| 記号 | ʔ |
| URLエンコード(UTF-8パーセント) | %CA%94 |
| 読み上げ名 / スクリーンリーダー | Latin Letter Glottal Stop |
| UTF-8 | CA 94 |
| UTF-16 | 0294 |
| UTF-32 | 00000294 |
1\documentclass{article}2\usepackage{pifont}3\text{LATINLETTERGLOTTALSTOP}4\end{document}以下の方法でほとんどの最新デバイスでlatin letter glottal stop記号を入力できます:
Alt + 660 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin letter glottal stop", or use Unicode Hex Input with 0294.
Ctrl + Shift + U, type 0294, 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.glottal-stop::before { content: "\0294"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ʔ</span>各プログラミング言語におけるLatin Letter Glottal Stop記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u0294' or String.fromCodePoint(660) |
| Python | '\N{LATIN LETTER GLOTTAL STOP}' or chr(660) |
| Rust | '\u{0294}' |
| C / C++ | UTF-8 source or wchar_t with U+0294 |
| Go | string(rune(0x0294)) |
| Ruby | "\u{0294}" |