You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to decoding the following byte sequences returns a internal server error. 82 04 68 4b 43 01 20 03 ac 02 08
I think its because it encodes an invalid utf-8 string. Im pretty sure this sequence represents [4, "KC<0x01> <0x03>"] (where <0x01> and <0x03> are ASCII SOH and ETX).
You don't need any special settings enabled, just load up cbor.me, copy the sequence into the right hand
The text was updated successfully, but these errors were encountered:
The fix for erroring out so unceremoniously can be discussed over there, but I note that there is a bare 0xac in the input, which indeed is not valid UTF-8 unless following certain other bytes. See below what happens when I fix this to 0x4c ("L").
Trying to decoding the following byte sequences returns a internal server error.
82 04 68 4b 43 01 20 03 ac 02 08
I think its because it encodes an invalid utf-8 string. Im pretty sure this sequence represents [4, "KC<0x01> <0x03>"] (where <0x01> and <0x03> are ASCII SOH and ETX).
You don't need any special settings enabled, just load up cbor.me, copy the sequence into the right hand
The text was updated successfully, but these errors were encountered: