I can't deal with an Arabic character 'ـ' SHIFT+J from keyboard, with ASCII value of 220 char(220) and UNICODE value of U+0640 .. in SQL Server nor in SELECT nor REPLACE or any other functions
I tried all possible Arabic collation
Arabic_CS_AS, Arabic_CI_AI, Arabic_CS_AI, Arabic_CI_AS
I tried this but did not solve my issue
SELECT ColumnName
FROM dbo.TableName
where
cast(ColumnName as nvarchar) like cast( N'%' + char(220) + N'%' as nvarchar)