ASCII 63
Question Mark (?)
Printable ASCII
Question mark. Ternary operator (a ? b : c), optional chaining (?.), URL query separator.
All encodings at a glance
| Decimal | 63 |
| Hexadecimal | 0x3F |
| Octal | 0077 |
| Binary | 00111111 |
| HTML numeric entity | ? |
| URL encoding | %3F |
| UTF-8 bytes | 0x3F |
Code snippets
JavaScript
String.fromCharCode(63); // "?"
63.toString(16); // "3f"Python
chr(63) # '?'
ord(chr(63)) # 63
hex(63) # '0x3f'HTML
? <!-- numeric entity (no named entity for this character) -->