Yami Odymel https://invade.tw/ says to OwO
/go@mmis_js_bot package main import ( "fmt" ) func main() { str := "理我企實我……里星建查老反現得由因,用裡臺角!基園將害朋人書動成資?獲只才!力員要年了,經個物入學活?士愛排道面關笑何因通為定排們好活來事野黃的可康的接開香活,在候子中中帶:候最了在長,球念們明微真城環!銀營開優型朋他他不生行然市。" fmt.Printf("string: %s\n", str) fmt.Println("String length:", len([]rune(str))) fmt.Println(" Bytes length:", len(str)) fmt.Println("------------------------------------") fmt.Println("cnt index rune char bytes") fmt.Println("------------------------------------") cnt := 0 for index, char := range str { cnt++ fmt.Printf("%-2d %-2d %U %2c %X\n", cnt, index, char, char, []byte(string(char))) } }