19-strings-runes-bytes/questions/README.md
// Here are the corresponding code points for the runes of "keeper":
// k => 107
// e => 101
// p => 112
// r => 114
// Code points:
// g => 103
// o => 111
fmt.Println(string(103), string(111))
const word = "gökyüzü"
bword := []byte(word)
// ö => 2 bytes
// ü => 2 bytes
fmt.Println(utf8.RuneCount(bword), len(word), len(string(word[1])))