I’m trying to convert a string like this: %D7%90%D7%93%D7%99, using PHP.
to Hebrew (so I can use it with MySQL queries).
I’ve been searching the web & stackoverflow for over 4 hours but found nothing about it.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That’s a URL-encoded (aka percent-encoded) string, not “octet string.” You simply need to
urldecode()it.