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?
%2C
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:
Chrome
decodeURIComponent("%2c")
it will decode and return the symbol (or symbols).
Hope this saves you some time.