TOML से JSON Converter

उल्टा रूपांतरण चाहिए?
JSON to TOML Converter

TOML इनपुट

1

JSON आउटपुट

JSON में बदलने के लिए TOML डेटा दर्ज करें

कन्वर्ट किया गया डेटा यहाँ दिखाई देगा

TOML को JSON में कैसे convert करें

  1. स्टेप 1 – TOML config paste करें

    • TOML key-value pairs, [sections] या [[array_tables]] को editor में paste करें।
    • Values strings, numbers, booleans, arrays या dates हो सकते हैं।
    • Computer से .toml files import करें।
  2. स्टेप 2 – JSON inspect करें

    • Tool TOML semantics को valid JSON objects में convert करता है।
    • Dates (RFC 3339) strings के रूप में preserve रहते हैं और typing जहाँ संभव हो maintain रहती है।
    • Verify करें कि table structures nested JSON properties के रूप में represent हो रहे हैं।
  3. स्टेप 3 – Output export करें

    • JSON copy करके JavaScript/TypeScript apps में use करें।
    • Data migration या API use के लिए .json file download करें।
Example: TOML to JSON
# Input TOML
title = "TOML Example"

[owner]
name = "Tom Preston-Werner"

// Output JSON
{
  "title": "TOML Example",
  "owner": {
    "name": "Tom Preston-Werner"
  }
}

Related tools

अक्सर पूछे जाने वाले सवाल

What is TOML format?

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.

How are TOML sections converted?

TOML sections [section] become nested JSON objects. Dotted keys like 'database.host' create nested structures automatically.

What TOML features are supported?

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.

Are array tables supported?

Yes. Array tables [[products]] are converted to JSON arrays containing objects, which is useful for representing repeated configuration blocks.

Is my data secure?

Yes, all data processing happens entirely in your browser. Your data is never sent to any server, ensuring complete privacy and security.

TOML से JSON Converter | JSONSwiss