in reply to Convert string into plain text

chr, hex:
$s = '\u0069\u006d\u0070\u006f\u0072\u0074\u0061\u006e\u0074'; $s =~ s/\\u(....)/chr hex $1/ge; say $s; __END__ important
($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,

Replies are listed 'Best First'.
Re^2: Convert string into plain text
by ultranerds (Hermit) on Nov 30, 2015 at 16:47 UTC
    Thanks, that did it as well. This is why I love Perl - TMTOWTDI :)