-
According to the docs |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 11 replies
-
Beta Was this translation helpful? Give feedback.
-
Any modern programming language has the ability to encode/decode unicode bytes quite easily. There are 2 distinct paths that the payload can follow: One is inside a json wrapper and the other one is raw bytes.
I just don't think adding json parsers is the correct solution here, since this can be solved in other ways that don't burden the MCU. |
Beta Was this translation helpful? Give feedback.
-
Besides appending
|
Beta Was this translation helpful? Give feedback.
Besides appending
|e
(pipe symbol +e
) at the end of the template, the escape character can be either\x
,\u
or\U
:Code points up to
0xFF
should be encoded as"\xE6"
in the template.Code points up to
0xFFFF
should be encoded as"\uE6E8"
in the template.Note: Use lowercase
\u
and exactly 4 hexadecimal digits.Code points above
0xFFFF
must be encoded as"\U0001F5E9"
in the template.Note: Use capital
\U
and exactly 8 hexadecimal digits.