in reply to Re^2: Special Chars in CGI form variables
in thread Special Chars in CGI form variables

Did you print also after the "blah-" prefix addition? Did you try to print something like "($field)" (note parens)? As a last resort, try to print:
print join "\n", map { "0x" . unpack("h2", ord($_)) } split //, $field; print $/;
which will give you the hex dump of the string.

Flavio (perl -e "print(scalar(reverse('ti.xittelop@oivalf')))")

Don't fool yourself.