from Hacker News

Ask HN: How much bandwidth is actually used for sending a single character?

by chintan39 on 5/6/16, 3:14 PM with 2 comments

A single character is 1 byte , but how many bytes are actually used for sending a single character? Assuming TCP is used
  • by maharishi1 on 5/6/16, 3:24 PM

    Size of Ethernet frame - 24 Bytes Size of IPv4 Header (without any options) - 20 bytes Size of TCP Header (without any options) - 20 Bytes So total size of empty TCP datagram - 24 + 20 + 20 = 64 bytes

    total size of TCP datagram with 1 char - 24 + 20 + 20 + 1 = 65 bytes