tags:

views:

129

answers:

3
dev%40bionic%2Dcomms%2Eco%2Euk

I want to turn the above back in to readable text. Can anyone tell me how? Thanks

EDIT Forgive my oversight, PHP is the language of choice!

+1  A: 

In JavaScript: decodeURIComponent("dev%40bionic%2Dcomms%2Eco%2Euk")

Piskvor
unescape doesn't work for non-ASCII characters and is deprecated, use decodeURIComponent instead (same goes for escape -> encodeURIComponent)
I.devries
+10  A: 

You haven't said which language, but in many the function you want is urldecode

(Looking at your other questions, you probably want PHP. It is urldecode there :))

Paul
Thanks a lot for this! :D
Drew
uk.php.net is your friend
Jay
+2  A: 

Although this wasn't what you were after, for reference in C# you can use HttpUtility.UrlEncode

EDIT

UrlDecode :P

http://msdn.microsoft.com/en-us/library/system.web.httputility.urldecode.aspx

Dan Revell