tcpsocket send/receive

How do I send and receive one byte at a time?

I used the following code thinking that it would send one by though it actually sent two:

tcpSocket1.write(chr(&hFA))

Try using ChrB(&hFA)
Chr(&hFA) has possibly been converted to a multi-byte character sequence.

Thanks Kevin.