tags:

views:

194

answers:

3
+1  Q: 

HTML Escapes

Given:

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

What does

%3E, %3C

Mean?

+3  A: 

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

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

Chris Marasti-Georg
+3  A: 

paste

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

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

x0n
Thank you, this will help if I have any other questions.
Nick Stinemates
+2  A: 

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

yjerem