strconv.Itoa
i := 123
s := strconv.Itoa(i)
fmt.Println(s)
// Output: 123
fmt.Sprintf
i := 123
s := fmt.Sprintf("%d", i)
fmt.Println(s)
// Output: 123