This tool automatically detects your input format and converts it:
Use Cases:
Input (Nested JSON):
{
"user": {
"name": "John Doe",
"email": "john@example.com",
"address": {
"street": "123 Main St",
"city": "New York"
}
},
"active": true
}
Output (Excel + JSON):
| Key | Value |
|---|---|
| user.name | John Doe |
| user.email | john@example.com |
| user.address.street | 123 Main St |
| user.address.city | New York |
| active | true |
β Nested objects flattened using dot notation
Input (Flattened Array):
[
{
"Key": "common.agree",
"Value": "εζ"
},
{
"Key": "common.continue",
"Value": "ηΉΌηΊ"
},
{
"Key": "common.skip",
"Value": "η₯ι"
},
{
"Key": "settings.language",
"Value": "ηΉι«δΈζ"
}
]
Output (Nested JSON):
{
"common": {
"agree": "εζ",
"continue": "ηΉΌηΊ",
"skip": "η₯ι"
},
"settings": {
"language": "ηΉι«δΈζ"
}
}
β Automatically reconstructs nested structure
β Perfect for i18n files!
π‘ The tool will auto-detect your format and convert accordingly. Excel file will download automatically.