What is the equivalent of python\'s chr() and ord() functions in golang?
chr(97) = \'a\' ord(\'a\') = 97
It appears that a simple uint8('a') will produce a correct output. To convert from integer to string string(98) will suffice:
uint8('a')
string(98)
uint8('g') // 103 string(112) // p