DevKits

ASCII 59

Semicolon (;)

Printable ASCII

Semicolon. Statement terminator in C-family languages. Alternative CSV delimiter in European locales.

All encodings at a glance

Decimal59
Hexadecimal0x3B
Octal0073
Binary00111011
HTML numeric entity&#59;
URL encoding%3B
UTF-8 bytes0x3B

Code snippets

JavaScript

String.fromCharCode(59); // ";"
59.toString(16); // "3b"

Python

chr(59)           # ';'
ord(chr(59))      # 59
hex(59)           # '0x3b'

HTML

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

Nearby codes