How do I convert full width characters into ascii characters in golang. The input in my program is full width numbers and I need to run some computations on them, so I assume I have to write a convert function like below, Before I start mapping bytes and such I was wondering if this is indeed available in the standard go library
fullWidth:="123"
expected := "123"
func convert(input string) string {
// body
}
expected == convert(fullWidth)