Given:
CR = %0d = \r
LF = %0a = \n
What does
%3E, %3C
Mean?
Given:
CR = %0d = \r
LF = %0a = \n
What does
%3E, %3C
Mean?
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
javascript:alert(unescape("%3E"))
into a browser's address bar and hit Return to find out ;)
The two digits after the % is an ASCII code represented in hexadecimal.