ASCII 6
Acknowledge (ACK)
Control character
Legacy control code; still used in some binary protocols.
All encodings at a glance
| Decimal | 6 |
| Hexadecimal | 0x06 |
| Octal | 0006 |
| Binary | 00000110 |
| HTML numeric entity |  |
| URL encoding | %06 |
| UTF-8 bytes | 0x06 |
Code snippets
JavaScript
String.fromCharCode(6); // "ACK"
6.toString(16); // "06"Python
chr(6) # control char ACK
ord(chr(6)) # 6
hex(6) # '0x06'HTML
 <!-- numeric entity (no named entity for this character) -->