Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>A <a href="http://tools.ietf.org/html/rfc3986#section-3.3" rel="noreferrer">path segment</a> (the parts in a path separated by <code>/</code>) in an absolute URI path can contain zero or more of <em>pchar</em> that is defined as follows:</p> <pre><code> pchar = unreserved / pct-encoded / sub-delims / ":" / "@" pct-encoded = "%" HEXDIG HEXDIG unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" sub-delims = "!" / "$" / "&amp;" / "'" / "(" / ")" / "*" / "+" / "," / ";" / "=" </code></pre> <p>So it’s basically <code>A</code>–<code>Z</code>, <code>a</code>–<code>z</code>, <code>0</code>–<code>9</code>, <code>-</code>, <code>.</code>, <code>_</code>, <code>~</code>, <code>!</code>, <code>$</code>, <code>&amp;</code>, <code>'</code>, <code>(</code>, <code>)</code>, <code>*</code>, <code>+</code>, <code>,</code>, <code>;</code>, <code>=</code>, <code>:</code>, <code>@</code>, as well as <code>%</code> that must be followed by two hexadecimal digits. Any other character/byte needs to be encoded using the <a href="http://tools.ietf.org/html/rfc3986#section-2.1" rel="noreferrer">percent-encoding</a>.</p> <p>Although these are 79 characters in total that can be used in a path segment literally, some user agents do encode some of these characters as well (e.g. <code>%7E</code> instead of <code>~</code>). That’s why many use just the 62 alphanumeric characters (i.e. <code>A</code>–<code>Z</code>, <code>a</code>–<code>z</code>, <code>0</code>–<code>9</code>) or the <a href="http://tools.ietf.org/html/rfc4648#section-5" rel="noreferrer">Base 64 Encoding with URL and Filename Safe Alphabet</a> (i.e. <code>A</code>–<code>Z</code>, <code>a</code>–<code>z</code>, <code>0</code>–<code>9</code>, <code>-</code>, <code>_</code>).</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload