urlencode

urlencode

[code]
func UrlEncode(str string) string {
	return url.QueryEscape(str)
}
[/code]