What it can do
- Parse a base-16 number
- Preserve the numeric value
- Render it in base two
How the recipe works
From Base
Convert the input into a numeric value.
To Base
Write that value using binary digits.
Demonstration
Sample input
2aExpected result
101010When to use it
- Computer-science exercises
- Bit-field inspection
- Number-system demonstrations
Adapt it
Change either radix to convert among bases 2 through 36.
Source and verification
Adapted from TryHackMe: CyberChef — The Basics. 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.