vá fazer string de char matriz

chars := []rune{'h','e','l','l','o'}
str := string(chars)
fmt.Println(str) // hello
Dopey Diplodocus