Changes between Initial Version and Version 1 of Ticket #40560, comment 8
- Timestamp:
- 02/22/2018 09:29:22 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #40560, comment 8
initial v1 5 5 > Any character may be escaped. If the character is in the Basic Multilingual Plane (U+0000 through U+FFFF), then it may be represented as a six-character sequence ... Alternatively, there are two-character sequence escape representations of some popular characters. 6 6 7 So even the string `"\u0048\u0065\u006c\u006c\u006f"` is perfectly valid JSON . Proof: https://jsonlint.com/?json=%22\u0048\u0065\u006c\u006c\u006f%227 So even the string `"\u0048\u0065\u006c\u006c\u006f"` is perfectly valid JSON, equivalent to `"Hello"`. Proof: https://jsonlint.com/?json=%22\u0048\u0065\u006c\u006c\u006f%22 8 8 9 9 Again, if this is an issue for you, it means the library or technique you are using to parse JSON is incorrect.