|
Yes, for JSON:
All Unicode characters may be placed within the quotation marks except for the characters that must be escaped: quotation mark, reverse solidus, and the control characters (U+0000 through U+001F).
(see also http://www.ietf.org/rfc/rfc4627.txt) Currently, we only escape quotation mark and reverse solidus. So there's probably a problem when parsing the white chars. Anyway, now I'm not so sure toString() is the best thing we can show. We should probably only show the name of the class and the hash code (similarly to Object.toString()).
|