Given:
CR = %0d = \r
LF = %0a = \n
What does
%3E, %3C
Mean?
|
1
|
|
|
|
|
|
They are URL encoded characters. %3C is <, %3E is > More info on URL Encoding, and a chart of some of the lower ASCII values. |
||
|
|
|
|
paste
into a browser's address bar and hit Return to find out ;) |
|||
|
|
|
The two digits after the % is an ASCII code represented in hexadecimal. |
||
|
|