HTML screens

Given:

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

      

What is he doing

% 3E,% 3C

means?

+1


source to share


3 answers


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



More information on URL encoding and diagram of some of the lower ASCII values.

+6


source


paste

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

      



into the address bar of your browser and press Return to find out;)

+6


source


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

+2


source







All Articles