I cannot find a special Unicode char in a string with TSQL - CHARINDEX
declare @n nchar(1), @str nchar(20)
set @n = nchar(8237)
select 'x'+@n+'x'
set @str = N'430'+@n+N'22' -- after "3" there is also an unicode 8237 char
select charindex( @n ,@str)
select patindex( '%%' ,@str) -- between %% there is an unicode 8237 char
Do you have any idea? Thanks in advance..