Encode

url.encode method is used to encode URL according to RFC 3986

url.encode(string <str>) : string

Returns a string in which all non-alphanumeric characters except -_.~ have been replaced with a percent (%) sign followed by two hex digits. This is the encoding described in ยป RFC 3986 for protecting literal characters from being interpreted as special URL delimiters, and for protecting URLs from being mangled by transmission media with character conversions (like some email systems).

Example #1: URL Encode Simple String

url.encode("Wapka Is Awesome so do you!") --> output: Wapka%20Is%20Awesome%20so%20do%20you%21