Data Conversion
Convert between data formats: query strings to objects, CSV to TSV, XML to JSON, and more. Useful for API debugging, data migration, and format transformation.
≋CSV Diff
Compare two CSV files row by row and highlight added, removed, and changed cells.
,->CSV to TSV
Convert CSV (comma-separated) to TSV (tab-separated) format.
</>JSON to XML
Convert a JSON object to indented XML markup.
{}?Object to Query String
Convert a JSON object to a URL query string.
?{}Query String to Object
Parse a URL query string into a JSON object.
->TSV to CSV
Convert TSV (tab-separated) to CSV (comma-separated) format.
FAQ
- How do I convert a query string to JSON?
- Paste the query string (e.g., "key1=value1&key2=value2") into the Query String to Object tool. It parses all key-value pairs into a JSON object.
- Can I convert XML to JSON?
- Yes. The XML to JSON converter parses XML structure and maps elements, attributes, and text content into equivalent JSON representation.