Golang Convert Rune ke String

r := rune('a')
fmt.Println(r, string(r))
Curious Cobra