> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Decode URI Component

> Convert percent-encoded URL text back to readable text.

The **Decode URI Component** action reverses percent encoding for one URL
component.

## Inputs

| Input       | Type   | Required | Description               |
| ----------- | ------ | -------- | ------------------------- |
| **Encoded** | String | Yes      | The percent-encoded text. |

## Outputs

| Output   | Type   | Description       |
| -------- | ------ | ----------------- |
| **Text** | String | The decoded text. |

For example, `quarterly%20report%20%26%20notes` becomes
`quarterly report & notes`.

<Note>
  A `+` remains a plus sign. This action does not apply HTML form-query rules
  that sometimes interpret `+` as a space.
</Note>

<Warning>
  Invalid or incomplete percent escapes, such as `%E0%A4%A`, cause the action to
  fail.
</Warning>
