Binary - Gray Code converter, truth table & example conversion to perform binary to gray code or gray code to binary conversion in digital electronics & communications. Select the radio button to perform the appropriate conversion. Both the conversions can be done by using the below EX-OR gate logic.
Binary | Gray Code | Decimal |
---|---|---|
0001 | 0001 | 1 |
0010 | 0011 | 2 |
0011 | 0010 | 3 |
0100 | 0110 | 4 |
0101 | 0111 | 5 |
0110 | 0101 | 6 |
0111 | 0100 | 7 |
1000 | 1100 | 8 |
1001 | 1101 | 9 |
1010 | 1111 | 10 |
1011 | 1110 | 11 |
1100 | 1010 | 12 |
1101 | 1011 | 13 |
1110 | 1001 | 14 |
1111 | 1000 | 15 |
10000 | 11000 | 16 |
10001 | 11001 | 17 |
10010 | 11011 | 18 |
10011 | 11010 | 19 |
10100 | 11110 | 20 |
10101 | 11111 | 21 |
10110 | 11101 | 22 |
10111 | 11100 | 23 |
11000 | 10100 | 24 |
11001 | 10101 | 25 |
11010 | 10111 | 26 |
11011 | 10110 | 27 |
11100 | 10010 | 28 |
11101 | 10011 | 29 |
11110 | 10001 | 30 |
This conversion method strongly follows the EX-OR gate operation between binary bits . The below steps & solved example may useful to know how to perform binary to gray code conversion.
1. To convert binary to gray code, bring down the most siginificant digit of the given binary number, because, the first digit or most siginificant digit of the gray code number is same as the binary number.
2. To obtain the successive gray coded bits to produce the equivalent gray coded number for the given binary, add the first bit or the most siginificant digit of binary to the second one and write down the result next to the first bit of gray code, add the second binary bit to third one and write down the result next to the second bit of gray code, follow this operation until the last binary bit and write down the results based on EX-OR logic to produce the equivalent gray coded binary.
Solved Example :
The below solved example may useful to understand how to perform binary to gray code conversion.
Problem
Find the equivalent gray code for the binary 111012.
Solution :
This conversion method also follows the EX-OR gate operation between gray & binary bits. The below steps & solved example may useful to know how to perform gray code to binary conversion.
1. To convert gray code to binary, bring down the most siginificant digit of the given gray code number, because, the first digit or the most siginificant digit of the gray code number is same as the binary number.
2. To obtain the successive second binary bit, perform the EX-OR operation between the first bit or most siginificant digit of binary to the second bit of the given gray code.
3. To obtain the successive third binary bit, perform the EX-OR operation between the second bit or most siginificant digit of binary to the third MSD (most significant digit) of gray code and so on for the next successive binary bits conversion to find the equivalent.
Solved Example :
The below solved example may useful to understand how to perform gray code to binary conversion.
Problem
Find the equivalent binary number for the gray code 1010.
Solution :
In digital electronics & communications, the conversion between different number systems play vital role to perform various operations. The above solved examples for binary to gray code and gray code to binary conversions may useful to understand how to perform such calculations, however, when it comes to online, this binary - gray code converter may useful to perform such conversions as easy & quick as possible.