in reply to Unicode in filenames

Maybe you could encode it using a local encoding, something like this?:
use Encode; $decodedLocalName = decode('utf8', $name); $decodedLocalName = encode('iso-8859-1', $decodedLocalName); open my $fh, '>', $decodedLocalName ...
You said you generally have no problem with unicode filenames. Do you mean that on this same OS, similar unicode characters work in similar perl scripts, or is there something special about this case?