My SQL table has rows like
Hawaiʻi
01
abcʻdef
ʻabc
abcʻ
All "apostrophes" are actually okina characters (U+02BB)
When I use the following search statement
select text01 from atable where text01 like N'%ʻ%'
I get all rows returned, even "01"
ESCAPE clause (e.g. LIKE N'%!ʻ%' ESCAPE '!') does not help
SQL Server 2005 SP3
Any ideas?