"Ftest 01234 4" is an ascii string as your testing shows. If you want to try some non-ascii data in the quoted string try sending "\01\02\03" that will send non-ascii data (OK, these are in the ascii set, but are "control characters"). You can use
pack to put "binary" data into a scalar.
HTH, --john