I converted one of them to binary and this is the result:
0x426F626273202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020
Also 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 = 0
DECLARE @String VARCHAR(50) = 'Bobbs '
WHILE @Position < LEN(@String)
BEGIN
SELECT ASCII(SUBSTRING(@String, @Position+1, @Position+2)) AS ASCIICODE,
CHAR(ASCII(SUBSTRING(@STring, @Position+1, @Position+2))) AS CHARVALUE
SET @Position = @Position + 1
END