DevKits

ASCII 5

Enquiry (ENQ)

Control character

Legacy telegraphy; unused.

All encodings at a glance

Decimal5
Hexadecimal0x05
Octal0005
Binary00000101
HTML numeric entity
URL encoding%05
UTF-8 bytes0x05

Code snippets

JavaScript

String.fromCharCode(5); // "ENQ"
5.toString(16); // "05"

Python

chr(5)           # control char ENQ
ord(chr(5))      # 5
hex(5)           # '0x05'

HTML

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

Nearby codes