What does this tool do?
Paste JSON below to convert it into INI format. Everything runs locally using JavaScript in your browser — nothing you paste or upload is ever sent to a server.
How to use this tool
- Paste your your json into the left-hand box.
- Click Convert to INI.
- Copy the ini output from the right-hand box.
Frequently asked questions
How are nested objects represented?
Each top-level object becomes an INI [section]; top-level primitive values are written before any section, as global keys.
What about deeply nested objects?
INI only supports one level of sections, so only top-level objects are turned into [section] blocks — deeper nesting is serialized as a JSON string value.
Where is INI commonly used?
Classic config files for applications, PHP's php.ini, and many desktop and Windows applications still use the INI format.
