In Web requests when posting data on a server a string from the template below (using the parameters):
string hello = "hello";
string token = "teste==";
It is transformed into post data like the ones shown below:
string post = "msg=hello&token=teste%3D%3D";
What type of encoding was used here, I know that the JSON serializer class can be used to serialize parameters, but which encoding was used above?