http://dominik.honnef.co/posts/2012/04/dealing_with_encodings_in_go/ Dealing with encodings in GoOne not well documented aspect of Go is how it handles string encodings, or how strings are actually treated internally. This article tries to shed some light on basic aspects of that, to get you started.It’s all UTF-8, right?A source of confusion is the fact that Go source code has to be encoded in ..