Giter Site home page Giter Site logo

Comments (6)

grisumbras avatar grisumbras commented on May 31, 2024

So, first of all "\uD83D\uD83D" is not a valid UTF-8 string. It does not represent any sequence of unicode characters. Whatever gives you strings like that does not give you UTF-8 encoded strings. My intuition is that you need to escape the slashes prior to JSON.stringify.

Second, parse_options::allow_invalid_utf8 is intended to disable checking if UTF-8 code units in the text are forming a valid code point. That is, it affects how unescaped UTF-8 is treated.

Now, there's an argument that we need to provide users with a way to allow invalid surrogate sequences in the input. Probably with the same option. The question then becomes, how to deal with such sequences, as they do not represent UTF-8 characters? If we leave them as-is, we ignore the JSON spec, because they are supposedly escaped characters. But we cannot treat them as surrogate pairs, because they do not represent any unicode characters.

from json.

pdimov avatar pdimov commented on May 31, 2024

If invalid UTF-16 is allowed, unpaired surrogates would probably need to be UTF-8 encoded, and the result will be WTF-8.

from json.

grisumbras avatar grisumbras commented on May 31, 2024

Oh, so there is a somewhat popular method of handling it? Would you recommend using a different option for this, or the same allow_invalid_utf8 ?

from json.

pdimov avatar pdimov commented on May 31, 2024

I think that this deserves a different option, allow_invalid_utf16. The input isn't invalid UTF-8, so it's not the same thing.

from json.

vaishnavkatiyar avatar vaishnavkatiyar commented on May 31, 2024

Is introducing the new option allow_invalid_utf16 under consideration for upcoming release?

from json.

grisumbras avatar grisumbras commented on May 31, 2024

Currently we're not committed to having this option at all.

from json.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.