pub const YYJSON_READ_ALLOW_INVALID_UNICODE: yyjson_read_flag = 64;Expand description
Allow reading invalid unicode when parsing string values (non-standard). Invalid characters will be allowed to appear in the string values, but invalid escape sequences will still be reported as errors. This flag does not affect the performance of correctly encoded strings.
@warning Strings in JSON values may contain incorrect encoding when this option is used, you need to handle these strings carefully to avoid security risks.