https://github.com/axgle/mahonia
package main
import "fmt"
import "github.com/axgle/mahonia"
func main(){
enc:=mahonia.NewEncoder("gbk")
//converts a string from UTF-8 to gbk encoding.
fmt.Println(enc.ConvertString("hello,世界"))
}
来源:oschina
链接:https://my.oschina.net/u/1383296/blog/4555093