ASCII 5
Enquiry (ENQ)
Control character
Legacy telegraphy; unused.
All encodings at a glance
| Decimal | 5 |
| Hexadecimal | 0x05 |
| Octal | 0005 |
| Binary | 00000101 |
| HTML numeric entity |  |
| URL encoding | %05 |
| UTF-8 bytes | 0x05 |
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
 <!-- numeric entity (no named entity for this character) -->