Thanks for all the help Arthur, +1 for you.
I ended up creating a cursor and checking all characters in every row of the table to find the strange 0xFDFF character. I concatenated all ids into a variable and got my list from there.
DECLARE CURSOR ...
....
WHILE @@FETCH_STATUS = 0
BEGIN
Declare @pos int
set @Pos = 0
while @Pos <= Len(@Str)
begin
if(convert(binary(2), substring(@Str, @pos, 1), 0) = 0xFDFF)
begin
set @ids = @ids + ',' + cast(@TheId as varchar)
--Select @TheId, @Str
break
end
set @Pos = @Pos + 1
end
FETCH NEXT FROM db_cursor INTO @TheId, @Str
END
CLOSE db_cursor
DEALLOCATE db_cursor
select @ids