Skip to content

String Decode

Decode a string from various formats like Base64, Hex, UTF-16, UTF-32, or unescape HTML, URL, JSON, and XML sequences.

Inputs#

Port Description
Input
The encoded string to decode.
Decoding
The decoding operation to apply.

Outputs#

Port Description
The resulting decoded string.

Addendum#

Decoding Operations#

This node takes an encoded string and decodes it back to UTF-8.

  • Printable Formats (Base64, Hex, etc.): These operations decode a human-readable ASCII string back to its original form.

  • Raw Byte Formats (UTF-16, UTF-32): These operations decode a string containing raw encoded bytes back to UTF-8. The input is expected to be produced by the String Encode node.

  • Unescape Formats (HTML, URL, JSON, XML): These operations unescape special character sequences in the input string to restore the original characters.

ID: core/string-decode@v1