DevKits

ASCII 63

Question Mark (?)

Printable ASCII

Question mark. Ternary operator (a ? b : c), optional chaining (?.), URL query separator.

All encodings at a glance

Decimal63
Hexadecimal0x3F
Octal0077
Binary00111111
HTML numeric entity?
URL encoding%3F
UTF-8 bytes0x3F

Code snippets

JavaScript

String.fromCharCode(63); // "?"
63.toString(16); // "3f"

Python

chr(63)           # '?'
ord(chr(63))      # 63
hex(63)           # '0x3f'

HTML

&#63;   <!-- numeric entity (no named entity for this character) -->

Nearby codes