simpleson
simpleson copied to clipboard
Unicode support
Related to #19, JSON is designed to support Unicode. The current implementation only supports ASCII.
A proper fix would include parsing for both UTF-8 and UTF-16.
When parsing a UTF-8 input, the parser should check for a leading 1 (input & 0x80 == true) to determine if a unicode character exists.