What is , in a URL?

后端 未结 7 1853
孤城傲影
孤城傲影 2020-12-04 04:59

I\'m trying to understand the structure of a URL, and I\'m seeing a lot of %2C. I\'m guessing this is a result of some encoding. What does that stand for?

7条回答
  •  春和景丽
    2020-12-04 05:07

    Another technique that you can use to get the symbol from url gibberish is to open Chrome console with F12 and just paste following javascript:

    decodeURIComponent("%2c")
    

    it will decode and return the symbol (or symbols).

    Hope this saves you some time.

提交回复
热议问题