I am observing the log of a program in the Go, and in the output I see this:
[]uint8=[18 32 96 38 15 212 226 233 58 14 183 212 80 4 175 97 28 235 76 154 244 210 200 18 131 241 31 86 179 109 228 190 78 72])
Now I would like to be able to convert this to a form where I can see what it means. This should be string content represented as []uint8.
But when I call the string method on that value as suggested in this link here I get a gibberish output.
What could I be doing wrong and how to go about this conversion?