yoyo
yoyo

Reputation: 1133

What's the hex for?

alt text

I know 0D 0A means new line,What's 09 09 09 09 09 09 09 3F ?

It's from UTF-8.

Upvotes: 0

Views: 237

Answers (4)

Oleiade
Oleiade

Reputation: 6274

an Operating system can use three different kind of numeric bases in order to encode characters. Binary, decimal or hexadecimal encoding. Most of the times the encoding is done using an iso table code ASCII table which for every computer usable characters, defines a binary, decimal and hexadecimal value who would represent it as a number.

You should take a look to man ascii then ;)

Upvotes: 0

javamonkey79
javamonkey79

Reputation: 17755

0x09 = 'Horizontal Tab'
0x3F = '?'

From here.

Upvotes: 0

Klaus Byskov Pedersen
Klaus Byskov Pedersen

Reputation: 120917

According to this ascii table that is 7 tabs followed by a question mark.

Upvotes: 7

Toon Krijthe
Toon Krijthe

Reputation: 53366

09 is TAB
3F is ?

So you have 2 newlines, 7 tabs, a question mark and another newline.

Assuming its ASCII.

Upvotes: 0

Related Questions