In SSMS v17.9, connecting to an SQL Server 14.0.1000 instance, the system treats these two character the same: and
I set a [Kanji] table with the [Char] NVARCHAR(2) as the primary key. After I added "", I cannot add "" since it threw a "key duplication" error.
I ran this T-SQL:
IF ( N'' = N'') PRINT 'true' ELSE PRINT 'false'
The result prints out 'true'.
you have to use proper collation,
collation can set on the fly in select statement or in DB object level
read more about collations