in reply to Re^2: CGI Input with Escaped Characters
in thread CGI Input with Escaped Characters

It seems like you need to convert & back to %26

my $raw_data =  uri_escape $query->param('data'); # not uri_unescape
poj