DEV Community

Discussion on: Go: integer overflows

Collapse
 
hchargois profile image
Hugo Chargois

Small correction: the trademark character is not in ASCII since ASCII is only 7-bit. The string "\x99" is not a valid UTF-8 encoding either; so it is simply a string that contains the byte 153

Collapse
 
ccoveille profile image
Christophe Colombier

Indeed, thanks