+ 2
The Internet standards define Unsafe character for URLs , Why ?
In URL Encoding . For example space character
5 Answers
+ 4
Space is %20 right?
What are unsafe characters?
+ 2
But there is another unsafe char such as (^)
+ 2
Unsafe characters Includes the blank/empty space and " < > # % { } | \ ^ ~ [ ] `
+ 2
Characters can be unsafe for a number of reasons. The space character is unsafe because significant spaces may disappear and insignificant spaces may be introduced when URLs are transcribed or typeset or subjected to the treatment of word-processing programs. The characters â<â and â>â are unsafe because they are used as the delimiters around URLs in free text; the quote mark (â"â) is used to delimit URLs in some systems. The character â#â is unsafe and should always be encoded because it is used in World Wide Web and in other systems to delimit a URL from a fragment/anchor identifier that might follow it. The character â%â is unsafe because it is used for encodings of other characters. Other characters are unsafe because gateways and other transport agents are known to sometimes modify such characters. These characters are â{â, â}â, â|â, â\â, â^â, â~â, â[â, â]â, and â`â.
+ 1
if you want more info https://perishablepress.com/stop-using-unsafe-characters-in-urls/