在 Go 中有几种方式将 rune 类型转换为 string12string('c')// string(rune('c'))1c或者借助 strconv 包1strconv.QuoteRune('c')1'c'这种方式会将单引号也打印出来