Compress and format JSON in your browser — minify to save space or pretty-print for readability, with no upload.
| 要点 | 说明 |
|---|---|
| 合法值类型 | string / number / object / array / true / false / null |
| 键与字符串 | 必须使用双引号,单引号不合法 |
| 转义字符 | \" \\ \/ \b \f \n \r \t \uXXXX |
| 压缩本质 | 移除所有无意义空白与换行,不改变语义 |
常见错误:使用单引号、末尾多余逗号、含注释、数值带前导零——均会导致解析失败。