Properly decode an UTF-8 string in golang.
func ToUtf8(to_decode string) string {
to_decode_buf := []byte(to_decode)
buf := make([]rune, len(to_decode_buf))
for i, b := range to_decode_buf {
buf[i] = rune(b)
}
return string(buf)
}