From cea3fe4165306c6758225ac3fca3d3dd89a21c98 Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Wed, 12 Apr 2017 21:22:07 +0200 Subject: [PATCH] Caveats: Add note about UTF-8 encoding --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 2938178..ca9d495 100644 --- a/README.md +++ b/README.md @@ -375,6 +375,10 @@ which are more complex than I'd care to try and stash into a `const char array[] ### Caveats +#### Character Encoding + +cJSON only supports UTF-8 encoded input and will always produce UTF-8 as output (If the input contained invalid UTF-8, it will most likely propagate it through to the output, thereby making the output non-valid UTF-8). + #### C Standard cJSON is written in ANSI C (or C89, C90). If your compiler or C library doesn't follow this standard, correct behavior is not guaranteed.