Thank you David for the detailled answer.
Le samedi 5 octobre 2019 20:48:11 UTC+2, David Finkel a écrit :
>
>
>
> On Thu, Oct 3, 2019 at 11:11 AM Poussier William > wrote:
>
>> Hello
>>
>> The encoding/json package escapes 0xA (line feed), 0xD (carriage return
Hello
The encoding/json package escapes 0xA (line feed), 0xD (carriage return)
and 0x9 (horizontal tab) using the escape character '\'. However, when it
comes to 0x8 (backspace) and 0xc (form feed), it uses the Unicode escape
sequence staring with '\u'.
Reproducer: https://play.golang.org/