As pointed out by Venkatesh, it is possible that those characters are tab characters. Aside from tab characters, they may be carriage returns or line feeds. To verify, you can run the following query:
SELECT * FROM YourTable WHERE YourColumn LIKE '%' + CHAR(9) + '%'
SELECT * FROM YourTable WHERE YourColumn LIKE '%' + CHAR(13) + '%'
If these queries return values, you can easily replace them with an empty string as follows:
UPDATE YourTable
SET YourColumn = REPLACE(YourColumn, CHAR(9), '')
UPDATE YourTable
SET YourColumn = REPLACE(YourColumn, CHAR(13), '')
http://www.sql-server-helper.com