| Symbol Name | Question Mark |
| Unicode Version | 1.1 |
| Unicode | U+003F |
| Unicode block | |
| General category | Other Punctuation (Po) |
| CSS Code | \003F |
| Hex Code | 0x003F |
| HTML Code | ? |
| LaTeX | ? |
| Symbol | ? |
| URL encode (UTF-8 percent) | %3F |
| Spoken / screen reader name | Question Mark |
| UTF-8 | 3F |
| UTF-16 | 003F |
| UTF-32 | 0000003F |
1\documentclass{article}2\usepackage{pifont}3?4\end{document}You can type the question mark symbol on most modern devices with the help of following methods:
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>Question Mark symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |