Converts INI configuration file format to JSON. INI sections become nested objects, key-value pairs become JSON properties, and comments are stripped. Handles boolean values (true/false), numbers, quoted strings, and multi-line values. Useful for migrating legacy configurations to modern JSON-based tools.
Paste your INI config and get clean JSON output ready for any modern configuration system. After converting, use the JSON Formatter to pretty-print the result.
Config file
Input
[db] host=localhost port=5432
Output
{"db":{"host":"localhost","port":5432}}Beautify, minify, and validate JSON with syntax highlighting.
Convert TOML configuration files to JSON format.
Convert JSON to YAML format instantly.
Convert Markdown to HTML instantly.
Convert HTML markup to clean Markdown syntax.
Convert CSV data into a JSON array of objects.