I need to update a few site names that contain circumflex accents.
update site
set SITE_NAME = 'Gŵyr'
from site
where SITE_ID = '2112685'
However, the site name gets updated as Gwyr, without the accent. The column data type is nvarchar(256). I know that ^ is a UNICODE character, so is there an easy fix to put this character in the update query so it gets changed accordingly in the SITE_NAME column.