You can either save the text to a file and then analyze it on the desktop or you can use String.GetBytes to convert it to a bytes array and find what are the characters.
Note that CRLF is chr(10). Maybe you are getting chr(13) & chr(10).
Try calling code.Trim it will remove leading and trailing whitespace.