Answer the question
In order to leave comments, you need to log in
How to get cyrillic from "%25BA%25D1%25" using php?
String returns
%25D0%25B8%25D1%258F-%25D0%25B4%25D0%25B8%25D0%25B7%25D0%25B5%25D0%25BB%25D1%258C%25D0%25BD%25D0%25B0%25D1
Answer the question
In order to leave comments, you need to log in
Use the urldecode or rawurldecode function
The string $str
must be a valid URL encoded string.
Well, if it's expanded
$res = '%25D0%25B8%25D1%258F-%25D0%25B4%25D0%25B8%25D0%25B7%25D0%25B5%25D0%25BB%25D1%258C%25D0%25BD%25D0%25B0%25D1';
$res = urldecode($res);
echo $res;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question