The encodeURI() function accepts a string value representing an URI and encodes it by replacing the characters in it using numbers (1 to 4) and escape sequence.
Syntax
Its Syntax is as follows
encodeURIComponent('https://www.qries.com/');Example
<html>
<head>
<title>JavaScript Example</title>
</head>
<body>
<script type="text/javascript">
var result1 = encodeURI('https://www.qries.com/?x=шеллы');
document.write(result1);
document.write("<br>");
var result2 = encodeURI('https://www.tutorialspoint.com/?x=шеллы');
document.write(result2);
</script>
</body>
</html>Output
https://www.qries.com/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B https://www.tutorialspoint.com/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B