How to use copyright symbol and trad mark symbol in rest api call (I need to pass one of the Json parameter )
I need to get it in Java code and save the values in DB .
Anyone have an idea on this?
How to use copyright symbol and trad mark symbol in rest api call (I need to pass one of the Json parameter )
I need to get it in Java code and save the values in DB .
Anyone have an idea on this?
If you want to use special characters you will to escape it.
Please read answer from this topic:
How should I escape strings in JSON?
Or you can use this service (for manual inputs):
https://www.freeformatter.com/json-escape.html
Or any modern JSON library with escaping support.