TOML इनपुट
JSON आउटपुट
JSON में बदलने के लिए TOML डेटा दर्ज करें
कन्वर्ट किया गया डेटा यहाँ दिखाई देगा
TOML configuration files को JSON format में convert करें
JSON में बदलने के लिए TOML डेटा दर्ज करें
कन्वर्ट किया गया डेटा यहाँ दिखाई देगा
स्टेप 1 – TOML config paste करें
स्टेप 2 – JSON inspect करें
स्टेप 3 – Output export करें
# Input TOML
title = "TOML Example"
[owner]
name = "Tom Preston-Werner"
// Output JSON
{
"title": "TOML Example",
"owner": {
"name": "Tom Preston-Werner"
}
}TOML (Tom's Obvious Minimal Language) is a configuration file format that's easy to read due to obvious semantics. It's designed to map unambiguously to a hash table.
TOML sections [section] become nested JSON objects. Dotted keys like 'database.host' create nested structures automatically.
The converter supports strings, numbers, booleans, arrays, inline tables, nested sections, and basic date/time parsing. Complex multiline strings and advanced TOML features may have limited support.
Yes. Array tables [[products]] are converted to JSON arrays containing objects, which is useful for representing repeated configuration blocks.
Yes, all data processing happens entirely in your browser. Your data is never sent to any server, ensuring complete privacy and security.