1. for i, s := range str {
    2. if unicode.Is(unicode.Han, s) {
    3. fmt.Println(str[i: i+3])
    4. }
    5. }