How can I see all the “special” characters permissible in a varchar or char field in SQL Server? [closed]

You probably just need to see the ASCII and EXTENDED ASCII character sets. As far as I know any of these are allowed in a char/varchar field.

If you use nchar/nvarchar then it’s pretty much any character in any unicode set in the world.

enter image description here

enter image description here

Leave a Comment