I want to save a JSON object in my column in a table. The JSON object has some Arabic text as well, which is appearing as ???? in my column.
update TableName set ArColumn='{
  "stockNameEn":"ABC",
   "formulaValues":[
      {
         "graphfield":"الحد الأدنى",
         "Minimum":"17.96"
      },
      {
         "graphfield":"الوسيط",
         "Median":"62.18"
      },
      {
         "graphfield":"بما في ذلك تأثير النمو",
         "IncludingGrowthEffect":"62.18"
      },
      {
         "graphfield":"السعر الحالي",
         "CurrentPrice":"93.10"
      },
      {
         "graphfield":"إلى الأمام",
         "Forward":"79.65"
      }
   ],
   "classification":{
      "value":1,
      "label":"Growth"
   }
}' where ID=43
I have found some solutions like to put N behind the Arabic text, but is this possible without it?
 
    