in reply to unknown encoding

Bottom line: will my approach of < 32 ascii or > 126 ascii work despite the actual encoding sent?

Not reliably. There are character encodings like UTF-7 that don't fit that scheme.

It's really better to determine the encoding first (maybe with Encode::Guess (core module)), and then properly decode it with Encode::decode.

Replies are listed 'Best First'.
Re^2: unknown encoding
by jimw54321 (Acolyte) on Oct 31, 2011 at 17:11 UTC
    thank you for the tip about these modules. Jim