}

Articles tagged "rune"

5 min readBeginner

Go: Convert Rune to String and String to Rune — Complete Guide (2026)

Convert rune to string in Go with string(r). Convert string to rune slice with []rune(s). Covers Unicode, utf8 package, for range iteration, and rune vs byte.

3 min readBeginner

Go Type Conversion Guide: rune to int, string to int, int to string (2026)

Complete Go type conversion guide 2026: rune to int with int(), string to int with strconv.Atoi, int to string with strconv.Itoa, byte to string, int64 conversions. All with working code examples.