| Nom du symbole | Greek Question Mark |
| Version Unicode | 1.1 |
| Unicode | U+037E |
| Bloc Unicode | |
| Catégorie générale | Punctuation (Po) |
| Code CSS | \037E |
| Code hexadécimal | 0x037E |
| Code HTML | ; |
| LaTeX | \text{GREEKQUESTIONMARK} |
| Symbole | ; |
| Encodage URL (pourcent UTF-8) | %CD%BE |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole greek question mark sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Greek Question Mark dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |