```js console.log(resolveURI('http://host', encodeURIComponent('ыы')); ``` Prints `http://host/Ñ�Ñ�`. This is because path is decoded with `unescape` function which does not support unicode directly.
Prints
http://host/��. This is because path is decoded withunescapefunction which does not support unicode directly.