test_2_pretty.txt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "string": "lorem ipsum",
  3. "utf string": "lorem ipsum",
  4. "utf-8 string": "あいうえお",
  5. "surrogate string": "lorem𝄞ipsum𝍧lorem",
  6. "string with null": "abc\u0000def",
  7. "positive one": 1,
  8. "negative one": -1,
  9. "pi": 3.1400000000000001,
  10. "hard to parse number": -0.00031399999999999999,
  11. "big int": 2147483647,
  12. "big uint": 4294967295,
  13. "double underflow": 6.9041432094973937e-310,
  14. "boolean true": true,
  15. "boolean false": false,
  16. "null": null,
  17. "string array": [
  18. "lorem",
  19. "ipsum"
  20. ],
  21. "x^2 array": [
  22. 0,
  23. 1,
  24. 4,
  25. 9,
  26. 16,
  27. 25,
  28. 36,
  29. 49,
  30. 64,
  31. 81,
  32. 100
  33. ],
  34. "\/*": null,
  35. "object": {
  36. "nested string": "str",
  37. "nested true": true,
  38. "nested false": false,
  39. "nested null": null,
  40. "nested number": 123,
  41. "nested array": [
  42. "lorem",
  43. "ipsum"
  44. ]
  45. },
  46. "*\/": null,
  47. "\/**\/": "comment",
  48. "\/\/": "comment",
  49. "url": "https:\/\/www.example.com\/search?q=12345",
  50. "escaped chars": "\" \\ \/",
  51. "empty object": {},
  52. "empty array": []
  53. }