http://play.golang.org/p/BoZkHC8_uA
I want to convert uint8 to string but can\'t figure out how.
package main import \"fmt\" import \"strconv\
Simply convert it :
fmt.Println(strconv.Itoa(int(str[1])))