# Den Textstring im UTF8 Format in einen Bytestring umwandeln my $content_utf8 = encode('utf-8', $content); # Den Bytestring wieder in Bytes umwandeln my @contents = unpack "C*", $content_utf8;