Skip to content

Instantly share code, notes, and snippets.

@vkorbes
Last active February 16, 2018 11:41
Show Gist options
  • Save vkorbes/4edd68b5b7a24c49fc562cb54e2a79c5 to your computer and use it in GitHub Desktop.
Save vkorbes/4edd68b5b7a24c49fc562cb54e2a79c5 to your computer and use it in GitHub Desktop.
s := “Ó o auê aí, ô!”
for len(s) > 0 {
char, size := utf8.DecodeRune([]byte(s))
fmt.Printf(“%-2c → %3d → Size: %1v byte(s).\n”, char, char, size)
s = s[size:]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment