Actually, no. HTTP/2 cannot be easily read or written by a human with a telnet or s_client connection without some additional tools. It also can't be supported by a lot of old software without some additional layer of indirection. This may or may not be important to you, but it is a thing that HTTP/2 cannot do.
And for what? Slightly faster speeds? This is a non-problem. When I see a slow site and view the network performance to discover why (using tools that would most likely not work under HTTP/2) here is what I inevitably see:
* Massive video and JavaScript for ads
* JavaScript tracking code
* Massive HTTP headers with unnecessary cookies
* Unnecessary, bloated JavaScript libraries
* Unnecessary, bloated CSS files
* Gratuitous unoptimized images
* No attempt at optimizing HTTP caching settings
* No attempt at HTTP compression (gzip)
These will still be the main bottlenecks with HTTP/2.
HTTP/2 solves no problem and makes network application development more difficult by making the network calls opaque and gratuitously complex.