I use:
@Html.Raw(Json.Encode(Model.Events))
to display model in JSON format.
On server side I have model:
{"Title":"Party","Url":"site.com/events?id=1&view=table"}
But after on client side I got JSON:
{"Title":"Party","Url":"site.com/events?id=1\u0026view=table"}
How can I display JSON without converting of special symbols ?