Scroll to navigation

CONV(1) convert ASCII, binary, decimal, hexadecimal and prints results on the in screen CONV(1)

NAME

bindechexascii - converts ASCII, binary, decimal, hexadecimal and prints results on the in screen

SYNOPSIS

bindechexascii [options] arg1 arg2 arg3

DESCRIPTION

bindechexascii is a program that converts the argument from standard input to the numbering system or character set (ASCII) specified in the option and prints the result on the screen. That way you can perform the following conversion: binary to decimal, binary to hex, binary to ASCII, decimal to binary, decimal to hex, decimal to ASCII, hex to binary, hex to decimal, hex to ASCII, ASCII to binary, ASCII to decimal, ASCII to hex.

OPTIONS

Print this help
Print information about program
Binary to decimal
Binary to hexadecimal
Binary to ASCII
Decimal to binary
Decimal to hexadecimal
Decimal to ASCII
Hexadecimal to binary
Hexadecimal to decimal
Hexadecimal to ASCII
ASCII to binary
ASCII to decimal
ASCII to hexadecimal

EXAMPLES

To convert the number 1000111 from binary to decimal:


bindechexascii --b2d 1000111
To convert the number 50 from decimal to binary:


bindechexascii --d2b 50
To convert the number 3F from hexadecimal to binary:


bindechexascii --h2b 3F
To convert the caractere 'a' from ASCII to binary:


bindechexascii --a2b a

AUTHOR

The bindechexascii was written by Leonid Plyushch <leonid.x212@gmail.com>. This manual page was written by Marcio de Souza Oliveira <m.desouza20@gmail.com> for the Debian project (but may be used by others).

May 2014 BINDECHEXASCII