I have many of my database columns defined as VARCHAR(255) and now would like to input unicode characters (especially the € sign). Inserting data doesn´t show the unicode symbols, but if I update my insert statement to use NVARCHAR paramerts it is working. But why? I didn´t change the column definition from VARCHAR to NVARCHAR.
To support these symbols should I just change all paramerts from VARCHAR to NVARCHAR or should I also update the columns definition to NVARCHAR(255)?