I am retrieving data from database which has special character §, When I set debugger on API, I see the value is with same character. I am sending back the response.
        public async Task<IActionResult> Get()
        {
            var retVal = ...
            return Json(retVal);
        }
Now on the browser when I check the network call i see on the response value coming as \u00A761 . And on UI it is displayed as
 Looks like its not able to encode the character properly.
 Looks like its not able to encode the character properly.
I have meta tag on head section also
<meta charset="utf-8">
Any Idea what I might be missing?
 
     
    