Search code examples
javascripturl-encoding

Decode hex string with percentage symbol (%HH)


I need to change string from this:

Fast-9%20|%20Speed%20(Something-Cool)

To this:

Fast-9 | Speed (Something-Cool)

How can I do it in NodeJS?


Solution

  • Refer decodeURIComponent

    The decodeURIComponent() method decodes a Uniform Resource Identifier (URI) component previously created by encodeURIComponent or by a similar routine.

    var str = 'Fast-9%20|%20Speed%20(Something-Cool)';
    alert(decodeURIComponent(str));