I converted one of them to binary and this is the result:0x426F626273202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020Also tried to discover the ASCII code of the spaces using this and it did not print out the spaces in the results:DECLARE @Position INT = 0DECLARE @String VARCHAR(50) = 'Bobbs 'WHILE @Position < LEN(@String)BEGINSELECT ASCII(SUBSTRING(@String, @Position+1, @Position+2)) AS ASCIICODE,CHAR(ASCII(SUBSTRING(@STring, @Position+1, @Position+2))) AS CHARVALUESET @Position = @Position + 1END