Checks which characters are ignored before URL path components in JavaScript.
if (new URL("https://example.com/"+String.fromCodePoint($[i])+"test").pathname==="/test") log($[i]);if (new URL("https://example.com/"+String.fromCodePoint(9)+"test").pathname==="/test") alert(9);if (new URL("https://example.com/"+String.fromCodePoint(10)+"test").pathname==="/test") alert(10);if (new URL("https://example.com/"+String.fromCodePoint(13)+"test").pathname==="/test") alert(13);