Convert hexadecimal integers (base 16) into their octal equivalents (base 8). This variant is locked to batch mode, allowing you to paste multiple hex values separated by newlines to get an instant line-by-line octal translation.
Supported hex formats
The converter accepts standard hexadecimal characters (0-9, A-F, a-f). You can safely include 0x prefixes, and any spaces or underscores in the input will be automatically ignored during processing. Signed values are supported by adding a leading + or -.
Error handling
Each line is evaluated independently. If a line contains invalid characters (like G, decimals, or letters beyond F), that specific line will output an error message while the rest of your batch continues processing normally.