Back
Asciify Logo
Asciify

End Of Transmission Block

ETB (End of Transmission Block) is ASCII code point 23 (0x17), Unicode U+0017. It is a C0 control character that marked the end of an intermediate data block within a larger transmission — distinct from ETX (0x03), which closed the final block. In IBM BSC, ETB told the receiver to validate the trailing CRC or LRC and reply with ACK, but expect more blocks to follow rather than a line release. This made it essential for segmenting long transfers across half-duplex links where the entire payload could not fit in a single frame. UTF-8 encodes it as the single byte 0x17; Unicode classifies it as Cc (Control) with the alias END OF TRANSMISSION BLOCK.

Symbol

Technical Details

Code Example

</>
unsigned char ETB = 0x17; // ASCII ETB
unsigned char msg[] = { 'A','B',ETB,'C','D' }; // block boundary
size_t i = 0; while (i < sizeof msg && msg[i] != ETB) i++; // find block end

Frequently Asked Questions

  • ETB (ASCII 23) stands for End of Transmission Block. It marks the end of a chunk of data within a larger transmission — like a paragraph break within a book. The full transmission isn't over, but this particular block is complete.

  • ETX (ASCII 3) marks the end of the entire text/message. ETB marks the end of one block within the message. Think of ETB as a section divider and ETX as the final period — more data may follow after ETB, but not after ETX.

  • It still appears in some mainframe communication protocols (like BISYNC) and certain healthcare data exchange standards (HL7 v2 uses it as a segment terminator in some implementations). Outside these niches, it's a historical artifact.

  • Only if you're implementing a protocol that specifically uses it. For general text processing, treat ETB as a non-printable control character to be stripped. Most modern protocols use explicit length fields or structured framing instead of marker bytes.

@workani&@alexluthor
Privacy & legal

Privacy

No accounts, no ads, no tracking cookies, and no cross-site tracking. The only analytics we keep are faceless — anonymous, aggregated counts of pages and searches, never tied to you. We store no IP addresses, set no tracking cookies, and build no profiles. Cloudflare hosts the site and handles requests for delivery and security.

Full privacy policy·Extension privacy·legal@asciify.dev

Attributions & licenses

Twemoji
© Twitter, Inc and other contributors · CC-BY 4.0
Noto Color Emoji
© Google · Apache 2.0
Fluent UI Emoji
© Microsoft · MIT
OpenMoji
© HfG Schwäbisch Gmünd · CC-BY-SA 4.0
Toss Face
© Viva Republica (Toss) · SIL OFL 1.1
JoyPixels
© JoyPixels Inc. · Free Limited Use License
SerenityOS Emoji
© The SerenityOS Developers · BSD-2-Clause
EmojiTwo
© EmojiTwo contributors · CC-BY 4.0
Apple Color Emoji
© Apple, Inc.
Facebook Emoji
© Meta Platforms, Inc.

Apple and Facebook emoji styles are proprietary and shown here solely for reference and comparison — a common-sense application of nominative-use / fair-use principles. asciify is not affiliated with, endorsed by, or sponsored by Apple, Inc., Meta Platforms, Inc., or any other rights holder listed above. If a rights holder requests removal of their emoji style from this site, it will be removed.

All other vendor emoji are reproduced for reference and comparison under their respective open licenses listed above.

Character names and code points from the Unicode® Standard. Unicode® and the Unicode Logo are registered trademarks of Unicode, Inc.

Privacy
© asciify.dev 2025-2026