Converts TOML (Tom's Obvious Minimal Language) files to JSON. Handles TOML tables ([table]), arrays of tables ([[array]]), inline tables, date/time literals, multi-line strings, and all TOML data types. Commonly used to convert Cargo.toml, pyproject.toml, and Hugo config files.
Paste your TOML configuration and get the equivalent JSON in seconds. For the reverse conversion, use the JSON to YAML tool to get YAML output from JSON.
Cargo.toml snippet
Input
[package] name = "myapp" version = "0.1.0"
Output
{"package":{"name":"myapp","version":"0.1.0"}}Beautify, minify, and validate JSON with syntax highlighting.
Convert INI 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.