Posted on 30th June 2025|19 views
Can we convert a rune to a string in Golang?
Posted on 30th June 2025| views
We can convert a slice of runes to a string like this
ru := []rune{'\u0071', '\u0072', '\u0073', '\u75E5', -1}
st := string(ru)
fmt.Println(st)