ASCII 44
Comma (,)
Printable ASCII
Comma. Separator in almost every data format (JSON, CSV, function arguments).
All encodings at a glance
| Decimal | 44 |
| Hexadecimal | 0x2C |
| Octal | 0054 |
| Binary | 00101100 |
| HTML numeric entity | , |
| URL encoding | %2C |
| UTF-8 bytes | 0x2C |
Code snippets
JavaScript
String.fromCharCode(44); // ","
44.toString(16); // "2c"Python
chr(44) # ','
ord(chr(44)) # 44
hex(44) # '0x2c'HTML
, <!-- numeric entity (no named entity for this character) -->