dcode
multi-format text decoder and cipher utility
TLDR
Decode base64 encoded text
SYNOPSIS
dcode encoding [options] [text]
DESCRIPTION
dcode is a command-line utility for decoding text from various encoding schemes. It supports common encodings like Base64, URL encoding, hexadecimal, and simple ciphers like ROT13.
The tool is useful for quickly decoding strings encountered in logs, URLs, configuration files, or CTF challenges. The auto-detect feature attempts to identify the encoding automatically when the type is unknown.
dcode simplifies the workflow of decoding text that would otherwise require multiple tools or online services.
PARAMETERS
ENCODING
Encoding type: base64, url, hex, rot13, binary, etc.TEXT
Text to decode.-f, --file FILE
Read input from file.auto
Auto-detect encoding type.-o, --output FILE
Write decoded output to file.--help
Display help information.
CAVEATS
Auto-detection is heuristic and may misidentify encodings. Binary data may not display correctly in terminal. Some encodings have multiple variants that may decode differently.
HISTORY
dcode is a utility tool designed to consolidate various decoding operations into a single command. Similar tools exist across different platforms, addressing the common need for quick text decoding in development and security workflows.
