Convert a JSON object to INI format instantly in your browser. Flat values become KEY=VALUE pairs; nested objects become [section] headers. Swap to INI→JSON. Client-side.
The JSON to INI converter serialises a JSON object to INI format using a custom serialiser. Top-level keys with scalar values (string, number, boolean) become bare `KEY=VALUE` pairs. Top-level keys with object values become INI `[section]` blocks with nested `KEY=VALUE` pairs. Both editors are live — swap to INI→JSON with one click.
QIs deeply nested JSON supported?
No — INI format supports one level of sections. Only two levels of nesting (root key → section, nested key → value) are serialised. Deeper nesting is stringified.
QIs my data sent to a server?
No. All conversion runs in a Web Worker inside your browser.