ASCII 59
Semicolon (;)
Printable ASCII
Semicolon. Statement terminator in C-family languages. Alternative CSV delimiter in European locales.
All encodings at a glance
| Decimal | 59 |
| Hexadecimal | 0x3B |
| Octal | 0073 |
| Binary | 00111011 |
| HTML numeric entity | ; |
| URL encoding | %3B |
| UTF-8 bytes | 0x3B |
Code snippets
JavaScript
String.fromCharCode(59); // ";"
59.toString(16); // "3b"Python
chr(59) # ';'
ord(chr(59)) # 59
hex(59) # '0x3b'HTML
; <!-- numeric entity (no named entity for this character) -->