As HTTP requests and responses travel across the internet, what is the format of the text in the request? Is it ASCII?
Example: If an HTTP request looks like the following -
GET /mysite/ HTTP/1.1
-- rest of the request --
Does the request go out as the following stream of ASCII coded bits? -
(In decimal) 71 69 84 32 47 etc.
Which is - "G" "E" "T" "space" "/" etc.
Or is it in some other format?
Any additional information about this process would also be greatly appreciated. Thanks!