How does golang deal with encode url?

such as the question, I tried a lot of methods, but it didn"t work

Jun.18,2021

as follows:



import(
    "fmt"
    "net/url"
)

funct main(){
    str1, _ := url.QueryUnescape("%E4%BD%A0%E5%A5%BD")
    fmt.Println(str1)
}

http://tool.chinaz.com/Tools/.
try to decrypt it here

if you can use the above brother's method to do it, if not, prove that there is a problem with encode

Menu