Search code examples
url-encoding

HTML Escapes


Given:

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

What does

%3E, %3C

Mean?


Solution

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

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