On Mon, Nov 09, 2020 at 03:47:13PM +0100, Grzegorz Kulewski wrote: > Hello, > > Is there any (sane) way to match things like: %e2%80%8b in URL in location? > Thank you in advance. Hi Grzegorz, here is the code snippet (not tested): location ~ ^/\xE2\x80\x8E { return 200 "%e2%80%8b matched\n"/; } -- Sergey