DevKits

ASCII 44

Comma (,)

Printable ASCII

Comma. Separator in almost every data format (JSON, CSV, function arguments).

All encodings at a glance

Decimal44
Hexadecimal0x2C
Octal0054
Binary00101100
HTML numeric entity,
URL encoding%2C
UTF-8 bytes0x2C

Code snippets

JavaScript

String.fromCharCode(44); // ","
44.toString(16); // "2c"

Python

chr(44)           # ','
ord(chr(44))      # 44
hex(44)           # '0x2c'

HTML

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

Nearby codes