I have a really crappy file full of unicode bytes that I'm trying to clean up. Some examples from the file are as follows:
ブラック
roler coaster
digital social party
big bellie
cornacopia
\xd0\xb7\xd1\x83\xd0\xb1\xd0\xbd\xd0\xb0\xd1\x8f \xd1\x89\xd0\xb5\xd1\x82\xd0\xba\xd0\xb0
Now, what I'd like to do is convert all those ugly byte points into real unicode text. So, the above would be output as:
ブラック
roler coaster
digital social party
big bellie
cornacopia
зубная щетка
I've been banging my head against how to do this in Perl for like an hour now, and I'm out of good ideas. If you have one, I'd love to hear it.