When you click “Submit,” the browser will encode the input into a URL format before sending it to the server.
A page on the server will then exhibit the received input.
Feel free to experiment with different input and click Submit again.
Your browser will encode input based on the character-set employed in your page.
The default character set in HTML5 is UTF-8.
|
character |
From Windows-1252 |
From UTF-8 |
|
€ |
%80 |
%E2%82%AC |
|
£ |
%A3 |
%C2%A3 |
|
© |
%A9 |
%C2%A9 |
|
® |
%AE |
%C2%AE |
|
À |
%C0 |
%C3%80 |
|
Á |
%C1 |
%C3%81 |
|
 |
%C2 |
%C3%82 |
|
à |
%C3 |
%C3%83 |
|
Ä |
%C4 |
%C3%84 |
|
Å |
%C5 |
%C3%85 |