ASCII 23
End of Transmission Block (ETB)
Control character
Legacy transmission block marker.
All encodings at a glance
| Decimal | 23 |
| Hexadecimal | 0x17 |
| Octal | 0027 |
| Binary | 00010111 |
| HTML numeric entity |  |
| URL encoding | %17 |
| UTF-8 bytes | 0x17 |
Code snippets
JavaScript
String.fromCharCode(23); // "ETB"
23.toString(16); // "17"Python
chr(23) # control char ETB
ord(chr(23)) # 23
hex(23) # '0x17'HTML
 <!-- numeric entity (no named entity for this character) -->