To check bytes used by a variable in SQL Server, you can use DATALENGTH
function.
DECLARE @temp NVARCHAR(MAX)
SET @temp = N'化字'
SELECT DATALENGTH(@temp)
This will display the number of bytes used @temp
variable to represent a character or expression.