Recipes turn common data tasks into visible, repeatable pipelines. Each page explains the capability, lists the operations, shows a safe sample, and links to a workspace route that installs the workflow.
Encoding and ciphers
BeginnerDecode Base64Turn a Base64 string back into readable text or raw bytes.IntermediateUnwrap nested encodingAsk Magic to rank plausible decoding paths through an unfamiliar blob.BeginnerDecode decimal character codesConvert comma-separated decimal character codes into text.BeginnerDecode Morse codeTranslate dot-and-dash groups into text while preserving word boundaries.BeginnerDecode a Vigenère cipherRecover a classical polyalphabetic-cipher message with a known key.IntermediateDecode Base45Recover bytes encoded with the compact Base45 alphabet used by QR-oriented formats.BeginnerDecode Base64urlDecode the URL-safe Base64 alphabet used in tokens and web protocols.BeginnerDecode quoted-printable textTurn equals-prefixed byte values from email content into readable text.BeginnerDecode a Punycode domainDisplay the Unicode form of an internationalized domain name.BeginnerDecode HTML entitiesRestore named and numeric HTML entities to their characters.BeginnerDecode URL parametersRestore percent-encoded characters and plus-as-space form values.IntermediateDecode double URL encodingApply URL decoding twice to expose a value that was encoded in two layers.IntermediateNormalize compatibility UnicodeConvert compatibility characters to their normalized NFKC form.BeginnerConvert hexadecimal bytes to textRead flexible hexadecimal byte notation and recover the underlying text.BeginnerConvert hexadecimal to binaryInterpret a hexadecimal number and render it in base two.
Identifiers, time, and network
BeginnerConvert a time zoneParse a known timestamp format and render it in another named time zone.IntermediateInspect a Teredo IPv6 addressReveal the IPv4 server, client, flags, and mapped port inside a Teredo address.IntermediateConvert a list of UNIX timestampsApply the same timestamp conversion to every line.BeginnerParse a URISplit a URI into scheme, credentials, host, port, path, query, and fragment.BeginnerAnalyse a UUIDIdentify a UUID's version, variant, and embedded metadata where applicable.IntermediateConvert Windows FILETIMETurn a decimal Windows FILETIME value into a readable UTC date.BeginnerParse UNIX file permissionsExplain a symbolic permission string and its octal representation.
Binary and files
IntermediateUnpack a Gzip hexdumpCross a text representation and compression layer in one workflow.IntermediateDecode Base64 and GunzipRecover text wrapped first in Gzip and then in Base64.IntermediateDecode hexadecimal XOR dataConvert hex to bytes and reverse a single-byte XOR operation.BeginnerDetect a file type from its headerRebuild bytes from hex and identify the format by its signature.BeginnerExtract strings from binary bytesRecover printable ASCII runs from a small binary sample.AdvancedDisassemble benign x86 bytesTurn a short synthetic x86 machine-code sequence into assembly instructions.
Security analysis
BeginnerDecode a JWTInspect a JSON Web Token header and payload without treating it as verified.IntermediateDecode a deflated SAML responseDecode Base64, inflate the raw DEFLATE stream, and format the XML.IntermediateDecode a PowerShell EncodedCommandRecover UTF-16LE PowerShell text from its Base64 command-line form.IntermediateDecode Base64 and XORReverse a common two-layer obfuscation pattern with an explicit XOR key.BeginnerExtract and defang URLsPull unique URLs from prose and make them safer to copy into reports.BeginnerExtract and defang IP addressesCollect IPv4 and IPv6 indicators, deduplicate them, and neutralize the notation.BeginnerRestore a defanged URLTurn a report-safe indicator back into a syntactically valid URL for controlled analysis.BeginnerIdentify a hash formatList hash algorithms that match a digest's length and character set.BeginnerCalculate a SHA-256 digestCompute a deterministic SHA-256 integrity value for text or bytes.IntermediateCalculate HMAC-SHA256Authenticate a message with a shared demonstration key and SHA-256.
Structured data
BeginnerBeautify and sort JSONIndent compact JSON and sort object keys for easier comparison.BeginnerConvert JSON to YAMLTurn a JSON object into a readable YAML document.BeginnerConvert CSV records to JSONUse the header row as property names and produce an array of objects.IntermediateQuery JSON with JsonataSelect products from orders whose prices exceed a threshold.BeginnerBeautify XMLIndent a compact XML document so element nesting is easy to inspect.BeginnerSort and deduplicate linesOrder text lines case-insensitively and remove exact duplicate rows.BeginnerExtract unique email addressesFind email addresses in prose, sort them, and remove duplicates.BeginnerExtract unique domainsCollect domain names from prose while removing duplicates.
How to use a recipe
- Open the recipe page and review its operations.
- Use Install in Serialize to load the workflow and sample input.
- Run or inspect the expected result.
- Replace the sample with your own data.
- Save a clean recipe without sensitive input.