[Solved] What is “%20” as a string in curl data?


This is HTML encoding and %20 represents the space character.

The string "searchText=sweet%20red%20wine" equates to "searchText=sweet red wine"

Source: https://www.w3schools.com/tags/ref_urlencode.asp

solved What is “%20” as a string in curl data?