Basically, when I put Cyrillic symbols in address bar like this:
https://venta.uz/items/men/#?categories=мужское
it gets encoded and appears in URL address bar like this:
https://venta.uz/items/men/#?categories=%5B%22%D1%88%D0%BE%D1%80%D1%82%D1%8B%22%5D
Similar questions have been asked a couple of times, here and here for example. But they all asked why this happens.
Here is why it happens:
It's a URL encoding in which all non-alphanumeric characters except
-_.
are replaced with a percent (%) sign followed by two hex digits and spaces encoded as plus (+) signs.
My question is:
Is it possible to fix this? maybe there is a workaround or hack that would allow Cyrillic characters appear as they are in the URL address bar?