you need to configure the database sort to sort that accepts this type of character, or you can add a matching clause of your choice as follows (google told me it was a Hindi character)
declare @unicodetext nvarchar(250) set @unicodetext='बन्द' select @unicodetext COLLATE Indic_General_90_CI_AS
that doesn't work, but I found this on BOL for SQL Server 2005:
4 Hindi comparisons are deprecated in SQL Server 2005 because this version of SQL Server uses the Windows 2000 collation table. The mapping still exists on the server, but it will not be supported in a future release of SQL Server and it will not appear in :: fn_helpcollations ().
5 Hindi and Lithuanian class mappings are deprecated in SQL Server 2005. These mappings still exist on the server, but they will not be supported in a future version of SQL Server, and they do not show up in :: fn_helpcollations ().
for 2008:
Hindi (India) - not available at server level
source share