Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

URL fragment (#) allowed characters

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/
like image 562
Qlii256 Avatar asked Sep 28 '14 19:09

Qlii256


People also ask

What is a fragment in a URL?

A fragment is an internal page reference, sometimes called a named anchor. It usually appears at the end of a URL and begins with a hash (#) character followed by an identifier. It refers to a section within a web page. In HTML documents, the browser looks for an anchor tag with a name attribute matching the fragment.

Can a URL have multiple fragments?

A URL cannot have more than one fragment. URL parameters are passed in key-value pairs. URL fragments comprise just a string of text after the hash (#).

What is URL hash used for?

In a URL, a hash mark, number sign, or pound sign ( # ) points a browser to a specific spot in a page or website. It is used to separate the URI of an object from a fragment identifier. When you use a URL with a # , it doesn't always go to the correct part of the page or website.

Is URL fragment sent to server?

Fragment identifiers are not sent to the server. The hash fragment is used by the browser to link to elements within the same page.


2 Answers

tl;dr

The fragment identifier component can contain:

  • 0 - 9
  • a - z
  • A - Z
  • ? / : @ - . _ ~ ! $ & ' ( ) * + , ; =
  • percent-encoded characters (a % 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:

fragment = *( pchar / "/" / "?" )

This means that the fragment can contain nothing or (any combination of)

  • characters defined in pchar
  • the /
  • the ?

Definition of pchar

Refer to the appendix A. to see how pchar is defined:

pchar = unreserved / pct-encoded / sub-delims / ":" / "@"

So this adds

  • characters defined in unreserved
  • characters defined in pct-encoded
  • characters defined in sub-delims
  • the :
  • the @

Definition of unreserved

Now check how unreserved is defined:

unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"

This adds

  • characters defined in ALPHA
  • characters defined in DIGIT
  • the -
  • the .
  • the _
  • the ~

Definition of ALPHA and DIGIT

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:

ALPHA (letters), […] DIGIT (decimal digits) […]

So this adds

  • a-z, A-Z
  • 0-9

Definition of pct-encoded

Check how pct-encoded is defined:

pct-encoded = "%" HEXDIG HEXDIG

This allows for any percent-encoded character.

Definition of sub-delims

Check how sub-delims is defined:

sub-delims = "!" / "$" / "&" / "'" / "(" / ")" / "*" / "+" / "," / ";" / "="

This adds

  • the !
  • the $
  • the &
  • the '
  • the (
  • the )
  • the *
  • the +
  • the ,
  • the ;
  • the =
like image 118
unor Avatar answered Sep 19 '22 08:09

unor


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:

  • "!"
  • "$"
  • "&"
  • "'"
  • "("
  • ")"
  • "*"
  • "+"
  • ","
  • ";"
  • "="
  • "?"
  • "@"
  • ALPHA
  • DIGIT
  • "-"
  • "."
  • "_"
  • "~"
  • "%" HEXDIG HEXDIG
  • ":"
  • "/"
like image 31
Qlii256 Avatar answered Sep 19 '22 08:09

Qlii256