In index max length is 900 bytes anyway, so you cannot index NVARCHAR(2000).
A larger index key means fewer keys fit in the index pages so it creates a larger tree, more disk used, more I/O, more buffer pull, less caching. For clustered keys this is far worse because the clustered key value is used as the lookup value on all other non-clustered, indexes, so it increases the size of all indexes.
Ultimately the single most prevalent performance driving metric in a query is the number of pages scanned/seek-ed. This translates into physical reads (=I/O wait time) or logical reads (=cache pollution).
Other than space considerations, data types make little to no difference in a query behavior. char/varchar/nchar/nvarchar have collations that needs to be taken into account on comparisons, but the cost of collation order lookup is usually not a deciding factor.
And last but not least, probably the most important factor, is your application access pattern. Index the columns that make queries SARGable, there is absolutely no benefit in having to maintain an index that is not used by the optimizer.
And sometimes you have to consider concurrency issues, like when you have to eliminate deadlocks caused by distinct update access path to the same record.
Update after post edit
Use a persisted MD5 hash column:
create table foo (
bar nvarchar(2000) not null,
[hash] as hashbytes('MD5', bar) persisted not null,
constraint pk_hash unique ([hash]));
go
insert into foo (bar) values (N'Some text');
insert into foo (bar) values (N'Other text');
go
select * from foo
where [hash] = hashbytes('MD5', N'Some text');
go
You have to be very careful with your seeks, the hash will differ wildly for any difference in input, ie. if you seek Ascii parameter instead of Unicode one...
You'll have a decent collision chance if your table grows big.