DevKits

ASCII 6

Acknowledge (ACK)

Control character

Legacy control code; still used in some binary protocols.

All encodings at a glance

Decimal6
Hexadecimal0x06
Octal0006
Binary00000110
HTML numeric entity
URL encoding%06
UTF-8 bytes0x06

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

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

Nearby codes