+1  A: 

You probably need to urlencode() the name:

$url = "http://filedownload.s3.amazonaws.com/" . urlencode("cénari.txt");
igorw
Thanks, it worked. I had tried it earlier but had by mistake, urlencoded the whole url instead.
Swaroop