| Nom du symbole | Question Mark |
| Version Unicode | 1.1 |
| Unicode | U+003F |
| Bloc Unicode | |
| Catégorie générale | Other Punctuation (Po) |
| Code CSS | \003F |
| Code hexadécimal | 0x003F |
| Code HTML | ? |
| LaTeX | ? |
| Symbole | ? |
| Encodage URL (pourcent UTF-8) | %3F |
| Nom oral / lecteur d’écran | Question Mark |
| UTF-8 | 3F |
| UTF-16 | 003F |
| UTF-32 | 0000003F |
1\documentclass{article}2\usepackage{pifont}3?4\end{document}Vous pouvez saisir le symbole question mark sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 63 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "question mark", or use Unicode Hex Input with 003F.
Ctrl + Shift + U, type 003f, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with punctuation support.
1span.question-mark::before { content: "\003F"; }1<span>?</span>La représentation du symbole Question Mark dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u003F' or String.fromCodePoint(63) |
| Python | '\N{QUESTION MARK}' or chr(63) |
| Rust | '\u{003F}' |
| C / C++ | UTF-8 source or wchar_t with U+003F |
| Go | string(rune(0x003F)) |
| Ruby | "\u{003F}" |