Json encode and decode: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
| Line 5: | Line 5: | ||
* Python [https://docs.python.org/3/library/json.html json — JSON encoder and decoder — Python 3.9.5 documentation] | * Python [https://docs.python.org/3/library/json.html json — JSON encoder and decoder — Python 3.9.5 documentation] | ||
JSON viewer | |||
* [http://jsonviewer.stack.hu/ Online JSON Viewer] | * [http://jsonviewer.stack.hu/ Online JSON Viewer] | ||
* Using Google Chrome or Edge browser to load the JSON file at the computer -> DevTools -> Network: To preview the content of JSON file | |||
Related pages | Related pages | ||
Revision as of 11:41, 3 February 2022
Encode JSON data or decode JSON string
- PHP: json_encode ↔ json_decode
- JavaScript: JSON.stringify() ↔ JSON.parse()
- Python json — JSON encoder and decoder — Python 3.9.5 documentation
JSON viewer
- Online JSON Viewer
- Using Google Chrome or Edge browser to load the JSON file at the computer -> DevTools -> Network: To preview the content of JSON file
Related pages