Skip to content
littlekit.app
All tools

INI to JSON

Convert simple INI sections and string values into explicit JSON locally.

INI → JSON48 characters
Paste configuration text. The live preview stays inert and is limited for responsiveness.
JSON previewReady
{
  "name": "Toolbox",
  "server": {
    "host": "localhost",
    "port": "3000"
  }
}
Processed on your device

How it works & useful details

INI import rules

Sections create one object level. Lines beginning with ; or # are comments, and both key=value and key: value are accepted. Repeated sections and duplicate keys are flagged.

INI values are always exported as strings; type conversion would be ambiguous. Dotted section/key names are kept as literal names.

Private, bounded processing

This workspace parses text only in your browser. It never opens links, requests external entities, runs pasted configuration, or saves your document. Input is limited to 500,000 characters; conversion output is limited to 1,000,000 characters.