Converters
Move data between formats without losing control of how it maps. Attribute handling, array notation, delimiters and flattening are all options rather than hidden assumptions.
Move data between JSON, XML, YAML, CSV, TSV, HTML tables and query strings with the options each format actually needs.
JSON to Base64Encode a JSON document as Base64 for transport in tokens, URLs or headers.JSONBase64Base64 to JSONDecode a Base64 string and format the JSON it contains.Base64JSONJSON to SQLGenerate INSERT statements from a JSON array of objects.JSONSQLSQL to JSONParse INSERT statements into a JSON array of row objects.SQLJSONJSON to XMLTurn JSON objects and arrays into well-formed XML with a configurable root element.JSONXMLXML to JSONParse XML into JSON with configurable attribute, text-node and array handling.XMLJSONJSON to YAMLConvert JSON into readable YAML for Kubernetes, CI pipelines and app configuration.JSONYAMLYAML to JSONParse YAML configuration into JSON, with clear errors for indentation mistakes.YAMLJSONJSON to CSVFlatten an array of JSON objects into a spreadsheet-ready CSV file.JSONCSVCSV to JSONParse CSV into a JSON array with delimiter detection and optional type inference.CSVJSONXML to CSVExtract repeating XML records into flat CSV rows for analysis.XMLCSVCSV to XMLTurn CSV rows into XML records with configurable root and row element names.CSVXMLYAML to XMLConvert YAML configuration directly into well-formed XML.YAMLXMLXML to YAMLRead XML documents as YAML, with attributes and text nodes mapped explicitly.XMLYAMLCSV to HTML TableGenerate a clean, accessible HTML table from CSV data.CSVHTMLJSON to HTML TableRender an array of JSON objects as an HTML table with automatic columns.JSONHTMLJSON to TSVExport JSON records as tab-separated values for pasting into spreadsheets.JSONTSVTSV to JSONParse tab-separated data — including clipboard pastes from spreadsheets — into JSON.TSVJSONJSON to Query StringBuild a URL-encoded query string from a JSON object, including nested values.JSONQuery stringQuery String to JSONParse a URL or query string into structured JSON, expanding arrays and nested keys.Query stringJSON