Here's a one-line conversion using Lua, similar to blueyed's answer except with all the RFC 3986 Unreserved Characters left unencoded (like this answer) and spaces encoded as '+' instead of '%20' (which could probably be added to the Perl snippet using a similar technique):
url=$(echo "$1" | lua -e'print(arg[1]:gsub("([^%w%-%.%_%~ ])",function(c)return("%%%02X"):format(c:byte())end):gsub(" ","+"))')
Additionally, you may need to ensure that newlines in your string are converted from LF to CRLF, in which case you can insert a gsub("\r?\n", "\r\n") in the chain before the percent-encoding, like so:
url=$(echo "$1" | lua -e'print(arg[1]:gsub("\r?\n", "\r\n"):gsub("([^%w%-%.%_%~ ])",function(c)return("%%%02X"):format(c:byte())end):gsub(" ","+"))')