Hi i need to store json in a db, before stroing the json. I am doing json.stringify() but still when the json comes with special characters like /,= … it stores in the db differently.
Example - this is the json " this is “Emergency App” that will be build etc. etc, : this is et/,"
It will be stored in postgres DB as “{“1”:“this is \“Emergency App\” that will be build etc. etc, : this is et\”/\\\\||/abc”}"
Can you help me, how to make sure it store the json in a proper manner
