### Environment ufo: 1.6.1 node: 22.19.0 ### Reproduction ```js import { encodeQueryValue } from "ufo"; console.log(encodeQueryValue("a`b")); ``` ### Describe the bug The query string “a`b” is not encoded to the query string URL value “a%60b”. See URL [RFC1738](https://datatracker.ietf.org/doc/html/rfc1738#section-2.2) Section-2.2, Page 3 under “Unsafe:”. ### Additional context _No response_ ### Logs ```sh ```