Machen Sie String aus char Array

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