DevKits

ASCII 23

End of Transmission Block (ETB)

Control character

Legacy transmission block marker.

All encodings at a glance

Decimal23
Hexadecimal0x17
Octal0027
Binary00010111
HTML numeric entity
URL encoding%17
UTF-8 bytes0x17

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

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

Nearby codes