INI to JSON
Convert INI configuration text into JSON, with [section] headers becoming nested objects and key=value lines becoming their properties.
- 1Paste your INI configuration text
- 2The JSON output is generated automatically
- 3Copy the result
Related Tools
JSON to INI
Convert a flat or one-level-nested JSON object into INI format — nested objects become [section] blocks, top-level scalar values become key=value lines outside any section.
TOML to JSON
This page does not parse TOML — the format's full grammar (dotted keys, inline tables, arrays of tables, typed dates) needs a real TOML parsing library, which this client-side tool declines to approximate. Gives exact commands for real tools instead.
JSON to TOML
Convert a flat or one-level-nested JSON object into TOML — nested objects become [table] blocks, top-level scalar values become key = value lines, strings are quoted.
Properties to YAML
Convert Java .properties key=value lines into flat YAML, converting dots in property names to underscores — not into nested YAML structure.