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.
{"name":"John Doe","age":30,"email":"john@example.com"}{
"name": "John Doe",
"age": 30,
"email": "john@example.com"
}{"user":{"name":"Jane","roles":["admin","editor"]},"settings":{"theme":"dark","notifications":true}}{
"user": {
"name": "Jane",
"roles": [
"admin",
"editor"
]
},
"settings": {
"theme": "dark",
"notifications": true
}
}[{"id":1,"name":"Product A","price":29.99},{"id":2,"name":"Product B","price":49.99},{"id":3,"name":"Product C","price":19.99}][
{
"id": 1,
"name": "Product A",
"price": 29.99
},
{
"id": 2,
"name": "Product B",
"price": 49.99
},
{
"id": 3,
"name": "Product C",
"price": 19.99
}
]Encode and decode Base64 data instantly. Convert text, files, and images to Base64 format for embedding in HTML, CSS, JSON, and APIs. Supports URL-safe Base64 and handles Unicode characters.
Generate MD5, SHA-1, SHA-256, SHA-384, SHA-512 hashes from text or files. Create checksums for file verification, data integrity, and security applications.