You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The URL Encoder/Decoder is currently using the encodeURI(uri) or decoderURI(uri) function which doesn't cover ; / ? : @ & = + $ , #.
This is to add a toggle to that Tool to be able to switch between encodeURI(uri) and encodeURIComponent(uri) also doing the same for decoding: decodeURI(uri) -> decodeURIComponent(uri) so it will cover those characters as well.
The URL Encoder/Decoder is currently using the
encodeURI(uri)
ordecoderURI(uri)
function which doesn't cover; / ? : @ & = + $ , #
.This is to add a toggle to that Tool to be able to switch between
encodeURI(uri)
andencodeURIComponent(uri)
also doing the same for decoding:decodeURI(uri) -> decodeURIComponent(uri)
so it will cover those characters as well.https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent
The text was updated successfully, but these errors were encountered: