Skip to main content
DevTools24

INI/JSON कन्वर्टर

INI और JSON के बीच कन्वर्ट करें।

INI Format Notes:
  • • Sections are denoted with [section]
  • • Key-value pairs use key = value
  • • Comments start with ; or #
  • • Values with spaces should be quoted

tools.ini-json-converter.toolInfo.title - तकनीकी विवरण

tools.ini-json-converter.toolInfo.details

कमांड-लाइन विकल्प

// INI format
[database]
host = localhost
port = 5432

// JSON equivalent
{ "database": { "host": "localhost", "port": "5432" } }