ibireme / yyjson

The fastest JSON library in C
https://ibireme.github.io/yyjson/doc/doxygen/html/
MIT License
2.98k stars 262 forks source link

A character make fail the JSON (empty JSON) #157

Closed lgg2 closed 3 months ago

lgg2 commented 5 months ago

Hello,

A value contening 'º' (0xb0 / U+00B0) abort the JSON write, giving the error: Error: 7 "invalid utf-8 encoding in string"

ibireme commented 5 months ago

The character 'º' needs two bytes in UTF-8: [0xC2 0xB0]. Just [0xB0] isn't a valid UTF-8 encoding. See: https://www.compart.com/en/unicode/U+00B0