| Symboolnaam | Latin Letter Glottal Stop |
| Unicode-versie | 1.1 |
| Unicode | U+0294 |
| Unicode-blok | |
| Algemene categorie | Other Letter (Lo) |
| CSS-code | \0294 |
| Hexadecimale code | 0x0294 |
| HTML-code | ʔ |
| LaTeX | \text{LATINLETTERGLOTTALSTOP} |
| Symbool | ʔ |
| URL-codering (UTF-8 procent) | %CA%94 |
| Uitgesproken naam / schermlezer | 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}Je kunt het latin letter glottal stop-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Latin Letter Glottal Stop-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |