golang实现unicode码和中文之间的转换

borey ·
更好的办法。 ``` //转换 package main import ( "fmt" "strconv" ) func main() { s1 := strconv.QuoteToASCII("苏苏") fmt.Println(s1) fmt.Println(strconv.Unquote(s1)) } ```
#1