in reply to perl one liner with -F special char

How about -F"\^"?
>perl -lnaF"\^" -e "print $F[0]"
works for me. So does this:
>perl -lnaF\136 -e "print $F[0]"