in reply to To decode URL-decoded UTF-8 string.

Same answer as others but since it's a one-liner and I did it before I saw they posted and I'm just slow, I'll add it.

perl -CSD -MEncode -MURI::Encode=uri_decode -le 'print decode("utf-8",uri_decode("%d0%be%d0%b1/%d1%81%d1%82%d0%b5%d0%bd"))'
об/стен
  • Comment on Re: To decode URL-decoded UTF-8 string.

Replies are listed 'Best First'.
Re^2: To decode URL-decoded UTF-8 string.
by nikolay (Beadle) on Aug 28, 2018 at 12:05 UTC
    Thank you.