Researching the pro's and con's of SQL Server's VARCHAR vs. NVARCHAR for my particular application, I came to the realization that it would be ideal if SQL Server supported UTF8 natively. Several SO posts indicate that it does not, e.g.:
Is VARCHAR like totally 1990s?
varchar vs nvarchar performance
However then I came across this article in the MSDN documentation for SQL Server 2012 that shows how to create a UTF8String user-defined data type:
http://msdn.microsoft.com/en-us/library/ff877964(v=sql.110).aspx
It seems that UDT would allow for the space (memory, disk) benefits of 8-bits-per-character while being flexible enough to store any string that can be represented in UTF-8. Is that correct? Are there downsides to this strategy (e.g. performance cost of executing the managed code for each row, ...)?