HTML Form Content Type Tester

Below are 4 forms. Each one utilizes a different "enctype" attribute on the form.

Default

Sample Result:

test_field_1=Test&test_field_2=%21%40%23%24%25%5E%26*%28%29_%2B-%3D

text/plain

Sample Result:

test_field_1=Test test_field_2=!@#$%^&*()_+-=

application/x-www-form-urlencoded

Sample Result:

test_field_1=Test&test_field_2=%21%40%23%24%25%5E%26*%28%29_%2B-%3D

multipart/form-data

Sample Result:

-----------------------------21204402826745 Content-Disposition: form-data; name="test_field_1" Test -----------------------------21204402826745 Content-Disposition: form-data; name="test_field_2" !@#$%^&*()_+-= -----------------------------21204402826745--