^thread
# ktor
e
^thread
Copy code
A URI is composed from a limited set of characters consisting of digits, letters, and a few graphic symbols.  A reserved subset of those characters may be used to delimit syntax components within a URI while the remaining characters, including both the unreserved set and those reserved characters not acting as delimiters, define each component's identifying data.
https://tools.ietf.org/html/rfc3986#section-2
ktor encode/decode query parameters by default 🙂
s
In terms of ktor look in
Codecs.kt
. It does not match the spec entirely