in reply to Re: search and replace these unique characters
in thread search and replace these unique characters

Somehow, character code point numbers are always easier for me to grok (and look up on code charts) when shown in hex; also, it can help to put in a "safe" placeholder for the non-printable ones -- otherwise, they can sometimes make the display somewhat confusing:
for (split //, $str) { printf( "%s: %02x\n", (/[[:print:]]/) ? $_:".", ord()); }