Is there a javascript function that takes a string and converts it into another string that is percent-encoded? That way something like "This Guy" turns into "This%20Guy".

Thanks

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

Try encodeURIComponent() or escape()

link|improve this answer
feedback

encodeURI, encodeURIComponent or escape will work the same way for your string, but they differ in details.

encodeURI is just for escaping URLs
encodeURIComponent also escapes "=" and "&"
escape works differently with non-ASCII unicode symbols
encodeURI("Ω") == encodeURIComponent("Ω") == "%CE%A9"
escape("Ω") == "%u03A9"

if you need to send a string as part of request, use encodeURIComponent

link|improve this answer
feedback

Yes, here is

escape('This Guy');
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.