theme := "狙擊 start" for i := 0; i < len(theme); i++ { fmt.Printf("ascii: %c %dn", theme[i], theme[i]) }程式輸出如下:
ascii: ? 231
ascii: 139
ascii: 153
ascii: ? 229
ascii: 135
ascii: ? 187
ascii: 32
ascii: s 115
ascii: t 116
ascii: a 97
ascii: r 114
ascii: t 116
theme := "狙擊 start" for _, s := range theme { fmt.Printf("Unicode: %c %dn", s, s) }程式輸出如下:
Unicode: 狙 29401
Unicode: 擊 20987
Unicode: 32
Unicode: s 115
Unicode: t 116
Unicode: a 97
Unicode: r 114
Unicode: t 116