| Symboolnaam | Greek Question Mark |
| Unicode-versie | 1.1 |
| Unicode | U+037E |
| Unicode-blok | |
| Algemene categorie | Punctuation (Po) |
| CSS-code | \037E |
| Hexadecimale code | 0x037E |
| HTML-code | ; |
| LaTeX | \text{GREEKQUESTIONMARK} |
| Symbool | ; |
| URL-codering (UTF-8 procent) | %CD%BE |
| Uitgesproken naam / schermlezer | Greek Question Mark |
| UTF-8 | CD BE |
| UTF-16 | 037E |
| UTF-32 | 0000037E |
1\documentclass{article}2\usepackage{pifont}3\text{GREEKQUESTIONMARK}4\end{document}Je kunt het greek question mark-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 894 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek question mark", or use Unicode Hex Input with 037E.
Ctrl + Shift + U, type 037e, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Greek keyboard.
Paste from this page or use a keyboard with Greek letter support.
1span.greek-question-mark::before { content: "\037E"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>;</span>De weergave van het Greek Question Mark-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u037E' or String.fromCodePoint(894) |
| Python | '\N{GREEK QUESTION MARK}' or chr(894) |
| Rust | '\u{037E}' |
| C / C++ | UTF-8 source or wchar_t with U+037E |
| Go | string(rune(0x037E)) |
| Ruby | "\u{037E}" |