JSON (JavaScript Object Notation) is a lightweight data interchange format that is easy for humans to read and write, and easy for machines to parse and generate.
- 📋 Format/Minify: Beautify JSON with indentation for readability, or compress it to save space.
- ✅ Validate: Checks if the JSON conforms to syntax specifications and displays the error location.
- 🔁 JSON → XML: Simple conversion where illegal characters in tag names are replaced with underscores, and array items are wrapped with
<item>.
- 📊 JSON → CSV: Converts an array of objects to CSV. Nested objects will be JSON-stringified; if the input is not an array, it is automatically wrapped into a single-row array.
- ⚠️ All error messages from this tool will be displayed directly in the output box without popups.
- 💡 Example:
{"name":"Andy","age":25,"hobbies":["Read Book","Computer"]}