JSON Formatter vs Text Case Converter
JSON Formatter
Pretty-print or minify JSON — with syntax validation.
Paste raw or minified JSON and format it with configurable indentation, or minify it by removing all whitespace. Validates syntax, reports parse errors with line/column, and optionally sorts keys or repairs malformed JSON.
Example input:
{
"json": "{\"name\":\"Alice\",\"age\":30}",
"mode": "pretty",
"indent": 2,
"sort_keys": false,
"repair": false
}Text Case Converter
Convert text between camelCase, snake_case, kebab-case, PascalCase, and 7 other naming conventions.
Convert any identifier or phrase between 11 naming conventions: camelCase, PascalCase, snake_case, SCREAMING_SNAKE_CASE, kebab-case, COBOL-CASE, dot.case, Title Case, Sentence case, lowercase, and UPPERCASE. Intelligently splits on whitespace, hyphens, underscores, dots, and camelCase boundaries so you can convert between any two formats in one step.
Example input:
{
"input": "myVariableName",
"to": "snake_case"
}| Feature | JSON Formatter | Text Case Converter |
|---|---|---|
| Category | formatting | text |
| Inputs | json, mode, indent, sort_keys, repair | input, to |
| Outputs | output, valid, error, error_line, error_column | output, tokens, from_detected |