After some digging on the internet I was unable to find a good answer to which characters I may use for URL fragment. I'm writing a javascript-script that will take advantage of URL fragments.
I wanted to make the URL eye-friendly by not having it looking too complicated. So I was wondering if I could use characters like ':, ?, & or !' in the URL fragment and still have it valid.
My URL fragment should contain the following values:
- order-by
- id
- desc or asc
- path
- /the/full/escaped/path/here/
tl;dr
The fragment identifier component can contain:
0
-9
a
-z
A
-Z
?
/
:
@
-
.
_
~
!
$
&
'
(
)
*
+
,
;
=
%
followed by two hexadecimal digits)How can I find this out?
The URI standard is STD 66, which currently maps to RFC 3986.
In this document, you’ll find everything you need to know.
The fragment identifier component is defined in section 3.5:
This means that the fragment can contain nothing or (any combination of)
/
?
Definition of
pchar
Refer to the appendix A. to see how pchar is defined:
So this adds
:
@
Definition of
unreserved
Now check how unreserved is defined:
This adds
-
.
_
~
Definition of
ALPHA
andDIGIT
Check how ALPHA and DIGIT are defined. They are not listed in the appendix, because they are from the core ABNF rules, as is explained in section 1.3:
So this adds
a
-z
,A
-Z
0
-9
Definition of
pct-encoded
Check how pct-encoded is defined:
This allows for any percent-encoded character.
Definition of
sub-delims
Check how sub-delims is defined:
This adds
!
$
&
'
(
)
*
+
,
;
=
It's a bit tricky to find the valid characters, but the file commented above does contain the information if you read deep enough.
The available characters are as follow: