| Symbol Name | Double Question Mark |
| Unicode Version | 3.2 |
| Unicode | U+2047 |
| Unicode block | |
| General category | Other Punctuation (Po) |
| CSS Code | \2047 |
| Hex Code | 0x2047 |
| HTML Code | ⁇ |
| LaTeX | \text{DOUBLEQUESTIONMARK} |
| Symbol | ⁇ |
| URL encode (UTF-8 percent) | %E2%81%87 |
| Spoken / screen reader name | Double Question Mark |
| UTF-8 | E2 81 87 |
| UTF-16 | 2047 |
| UTF-32 | 00002047 |
1\documentclass{article}2\usepackage{pifont}3\text{DOUBLEQUESTIONMARK}4\end{document}You can type the double question mark symbol on most modern devices with the help of following methods:
Alt + 8263 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "double question mark", or use Unicode Hex Input with 2047.
Ctrl + Shift + U, type 2047, 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.double-question-mark::before { content: "\2047"; }1<span>⁇</span>Double Question Mark symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2047' or String.fromCodePoint(8263) |
| Python | '\N{DOUBLE QUESTION MARK}' or chr(8263) |
| Rust | '\u{2047}' |
| C / C++ | UTF-8 source or wchar_t with U+2047 |
| Go | string(rune(0x2047)) |
| Ruby | "\u{2047}" |