Memory contents to ASCII string, little endian format

后端 未结 1 2033
栀梦
栀梦 2021-01-26 18:19

I have to translate the following memory contents to ASCII code, using little endian format:

0x6A636162 0x64726177 0x00002173

I got \"jcab draw

相关标签:
1条回答
  • 2021-01-26 18:42

    It's supposed to be "backwards!" You read the first two rightmost hex values first as one ascii char, and then focus on the pair to the left of that, until you get to the furthest left most hex values.

    0 讨论(0)
提交回复
热议问题