OK thank you for showing your complete code. The problem is that you are passing the contents of $body as a URL parameter, and so the HTTP protocl needs various characters escaping to pass them through properly.
You can achieve this with the URI::Escape module, and you will no longer have to do the sanitizing that you do on line 125 and the lines following # clean the body.
This program uses a string containing all the problem characters you have identified, and translates it using the module. If you use uri_escape on the contents of $body before appending it to the URL for Curl then everything should work.
use strict;
use warnings;
use URI::Escape 'uri_escape';
my $body = '%localappdata% â & ';
print uri_escape $body;
output
%25localappdata%25%20%E2%20%26%20
Update
For manipulating URLs in general it is best to use the URI module which will do all necessary escaping for you in both the path and the query part of the URL.
The program below shows how to generate the URL you need to pass to $curl->setopt using this method
use strict;
use warnings;
use URI;
my $url = URI->new('https://this/is/the/url');
my $body = '%localappdata% â & ';
$url->query_form(body => $body);
print $url, "\n";
output
https://this/is/the/url?body=%25localappdata%25+%E2+%26+
(Note that this method uses + instead of %20 for space characters. Either is acceptable in the query portion of a URL.)
This URL can be set as a Curl option directly by writing
$curl->setopt(CURLOPT_URL, $url);
qwis used for turning a string of characters in your source code into a list of strings. – amon Jul 13 '12 at 15:30%localappdata%, or howqw//could help you. Is the decryption failing somehow? Or are you perhaps trying to split the message on whitespace likeqw//does with string literals? – Borodin Jul 13 '12 at 15:49quotemetamay help you, but these are wild guesses unless you show your code. – Borodin Jul 13 '12 at 16:02