What is a valid URL query string?

后端 未结 3 1851
醉话见心
醉话见心 2020-12-10 13:39

What characters are allowed in an URL query string?

Do query strings have to follow a particular format?

3条回答
  •  自闭症患者
    2020-12-10 14:35

    This link has the answer and formatted values you all need.

    https://perishablepress.com/url-character-codes/

    For your convenience, this is the list:

    <     %3C
    >     %3E
    #     %23
    %     %25
    {     %7B
    }     %7D
    |     %7C
    \     %5C
    ^     %5E
    ~     %7E
    [     %5B
    ]     %5D
    `     %60
    ;     %3B
    /     %2F
    ?     %3F
    :     %3A
    @     %40
    =     %3D
    &     %26
    $     %24
    +     %2B
    "     %22
    space     %20
    

提交回复
热议问题