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 INI or JSON (sections become objects).
- Conversion runs live; values stay strings, comments drop.
- Copy the result.
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.