What it can do
- Split comma-separated numbers
- Interpret values in base 10
- Map code points to characters
How the recipe works
From Charcode
Read each decimal value and emit its matching character.
Demonstration
Sample input
83,101,114,105,97,108,105,122,101Expected result
SerializeWhen to use it
- Script deobfuscation
- Programming exercises
- Inspecting numeric text representations
Adapt it
Select hexadecimal when the values use byte notation such as 53, 65, 72 in base 16.
Source and verification
Adapted from kraven-security CyberChef recipes. The explanation and sample are written for Serialize, use synthetic or documentation-safe data, and are checked against the current operation catalogue. The workflow runs locally without an external API call.