Convert plain text to JSON with simple or advanced modes. Simple mode: bidirectional text/JSON conversion. Advanced mode: auto-detect CSV/tables, key-value pairs, nested structures with smart type detection for numbers, booleans, and nulls.
Apple
Banana
Cherry
Date[
"Apple",
"Banana",
"Cherry",
"Date"
]name: John Doe
email: john@example.com
role: Developer
status: Active{
"name": "John Doe",
"email": "john@example.com",
"role": "Developer",
"status": "Active"
}["Red", "Green", "Blue", "Yellow"]Red
Green
Blue
Yellowname,age,active
John,28,true
Jane,32,false[{"name":"John","age":28,"active":true},{"name":"Jane","age":32,"active":false}]name: John Doe
age: 28
active: true{"name":"John Doe","age":28,"active":true}Apple
42
true
Banana["Apple",42,true,"Banana"]user:
name: John
email: john@example.com{"user":{"name":"John","email":"john@example.com"}}Format, validate, and beautify JSON data instantly with syntax highlighting. Parse minified JSON, fix formatting issues, and visualize JSON structure with tree view for debugging APIs and config files.
Convert plain text to YAML with simple or advanced modes. Simple mode: bidirectional text/YAML conversion. Advanced mode: auto-detect CSV/tables, key-value pairs, nested structures for DevOps configs like Kubernetes and Docker Compose.
Convert plain text to CSV format and vice versa. Transform text lines to CSV rows with headers and proper escaping. Bidirectional conversion with export.
Convert plain text to HTML with simple or advanced modes. Simple mode: bidirectional text/HTML conversion with paragraph wrapping. Advanced mode: auto-detect tables, lists, key-value pairs with semantic HTML output and live preview.