#Perl one-liner that converts unicode code points to characters: $ perl -CS -l ...

Words
28
Reading
1 min
Listen
Play
3y

... -e 'print (map {chr int hex} @ARGV)' 3c0

π

$ perl -CS -l -e 'print (map {chr int hex} @ARGV)' 3c0 3c0 3c0

πππ


#Perl one-liner that converts unicode code points to characters: $... | Ecency