vote up 1 vote down star
1

Given:

CR = %0d = \r
LF = %0a = \n

What does

%3E, %3C

Mean?

flag

3 Answers

vote up 3 vote down check

They are URL encoded characters. %3C is <, %3E is >

More info on URL Encoding, and a chart of some of the lower ASCII values.

link|flag
vote up 3 vote down

paste

javascript:alert(unescape("%3E"))

into a browser's address bar and hit Return to find out ;)

link|flag
Thank you, this will help if I have any other questions. – Nick Stinemates Nov 18 '08 at 3:19
vote up 2 vote down

The two digits after the % is an ASCII code represented in hexadecimal.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.