INI ↔ JSON Converter
Convert INI files to JSON online and back. Sections become objects, comments ignored. Everything runs locally.
INI ↔ JSON
All values stay strings; ;/# comments ignored.
Output
{
"server": {
"host": "localhost",
"port": "8080"
},
"auth": {
"token": "abc123"
}
}How to use
- Paste input or drop a file above.
- Adjust options (delimiter, dialect, quality, ratio).
- Copy result or download — no sign-up needed.
FAQ
What happens to values?
All values stay strings — INI has no types. Numbers and booleans come back as strings.
Comments preserved?
No. Comment lines are dropped during conversion.