It is not just a matter of which characters. Different characters are legal at different points. For example, according to RFC 2396, an unescaped '?' is legal in the fragment part but not the path part.
You need to read RFC 2396 to understand the details ... or ask a more specific question. Or if you really mean URI rather than URL the RFC 3986 is what you should be reading.
You asked if example.com/file[/].html is a valid URL.
I agree with Dominic Sayers - No. A URL must have an explicit scheme, such as "http", followed by a ':'.
But Dominic then goes on to say that http://example.com/file[/].html is not a valid URL either, and that is not so clear-cut.
The '[' and ']' characters are <reserved> characters and should be percent escaped if not used as delimiters in the scheme-specific syntax. The spec says:
"URI producing applications should percent-encode data octets that correspond to characters in the reserved set unless these characters are specifically allowed by the URI scheme to represent data in that component."
(Note - the operative work here is "should", and not "shall" or "must". This is advisory, not prescriptive.)
The next sentence of the spec says this:
"If a reserved character is found in a URI component and no delimiting role is known for that character, then it must be interpreted as representing the data octet corresponding to that character's encoding in US-ASCII."
(Note that the operative word is "must". This is saying what a URI means if someone ignores the advice of the previous sentence.)
So how does this apply here? Well HTTP is a "hierarchical" scheme, and the generic ABNF for hierarchical schemes doesn't say that '[' or ']' are delimiters in a <path>. On the other hand, the ABNF does say that a <path segment> consists of <unreserved> characters, <sub-delimiters>, percent-encoded characters, ':' or '@'. In other words, '[' or ']' are not allowed by a strict reading of the ABNF.
So, strictly "http://example.com/file[/].html" is not valid. But if you do encounter such a URL (and don't decide to reject it), the earlier part of the spec says that the '[' and ']' characters must be treated as data characters. So, the URL would parse as:
- scheme ==
"http"
- authority ==
"example.com"
- path ==
"/file[/].html"
And the path should parse as '/' <segment> '/' <segment> where the first segment is "file[" and the second one is "].html"