Escaped characters in API Responses
The syntax of some API responses may contain the escape character, \
(backslash). An escape character indicates that the character or string of characters that immediately follow the escaped character have a special value. For example, \t
tells the reading device that t
should be interpreted as tab
and not as the letter “t”. A string of one or more characters following the backslash is called an escape sequence.
Hexadecimal escaped sequences require the use of valid hexadecimal digits. The following table lists the escape sequences that are encoded in Adobe Workfront API responses:
\u000 x
Where, x is the hexadecimal code for numbers 0 through 7
\u00 xx
Where, xx is the hexadecimal code for numbers 14 through 31
\u xxxx
Where, xxxx is the hexadecimal code for any number over 127