| Nome del simbolo | Greek Question Mark |
| Versione Unicode | 1.1 |
| Unicode | U+037E |
| Blocco Unicode | |
| Categoria generale | Punctuation (Po) |
| Codice CSS | \037E |
| Codice esadecimale | 0x037E |
| Codice HTML | ; |
| LaTeX | \text{GREEKQUESTIONMARK} |
| Simbolo | ; |
| Codifica URL (percentuale UTF-8) | %CD%BE |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo greek question mark sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Greek Question Mark nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |