ASCII 40
Left Parenthesis (()
Printable ASCII
Left parenthesis. Opens a group in expressions and function calls.
All encodings at a glance
| Decimal | 40 |
| Hexadecimal | 0x28 |
| Octal | 0050 |
| Binary | 00101000 |
| HTML numeric entity | ( |
| URL encoding | %28 |
| UTF-8 bytes | 0x28 |
Code snippets
JavaScript
String.fromCharCode(40); // "("
40.toString(16); // "28"Python
chr(40) # '('
ord(chr(40)) # 40
hex(40) # '0x28'HTML
( <!-- numeric entity (no named entity for this character) -->