| Nome del simbolo | Question Mark |
| Versione Unicode | 1.1 |
| Unicode | U+003F |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \003F |
| Codice esadecimale | 0x003F |
| Codice HTML | ? |
| LaTeX | ? |
| Simbolo | ? |
| Codifica URL (percentuale UTF-8) | %3F |
| Nome parlato / screen reader | Question Mark |
| UTF-8 | 3F |
| UTF-16 | 003F |
| UTF-32 | 0000003F |
1\documentclass{article}2\usepackage{pifont}3?4\end{document}Puoi digitare il simbolo question mark sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Question Mark nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |