不喜欢广告? 无广告 今天

Binary to Gray Code Converter

开发人员
广告 · 消除?

Single Conversion


批量转换

Conversion Result


Step-by-Step XOR Visualization


Conversion Table


批量结果


参考资料

广告 · 消除?

指导

Binary to Gray Code Converter

Binary to Gray Code Converter

Convert between binary and Gray code (reflected binary code) instantly. Enter a binary number, Gray code, or decimal value and see all representations with a step-by-step XOR visualization showing exactly how the conversion works. Supports up to 64-bit values with batch conversion mode.

如何使用

Select your input type (Binary, Gray Code, or Decimal), enter a value, and choose a bit width (Auto, 4-bit, 8-bit, 16-bit, 32-bit, or 64-bit). The converter instantly displays all representations: binary, Gray code, decimal, hex, and octal — each with a copy button. View the step-by-step XOR visualization to understand exactly how the conversion works bit by bit. Check the conversion table for quick reference, or use batch mode to convert multiple values at once.

特征

  • 双向转换 — Convert Binary to Gray code, Gray code to Binary, or start from Decimal. All conversions happen instantly with no button clicks needed.
  • XOR Step-by-Step Visualization — See the exact XOR operation for each bit position with color-coded pairs, making it easy to understand and verify the conversion algorithm.
  • 多种输出格式 — Binary, Gray code, decimal, hexadecimal, and octal — each with a dedicated copy button for quick use.
  • Conversion Table — Reference table showing Decimal, Binary, and Gray code for ranges 0-15, 0-31, 0-63, or 0-255. Current input value is highlighted.
  • 批量模式 — Convert multiple values at once. Enter one value per line, select input and output formats, and get results in a table with copy-all functionality.
  • Flexible Bit Width — Auto-detect or manually set to 4-bit, 8-bit, 16-bit, 32-bit, or 64-bit. Uses BigInt for values exceeding 32 bits.
  • 参考指南 — Explanation of Gray code, the XOR algorithm, single-bit transition property, reflected construction, and real-world applications.

What is Gray Code?

Gray code (also called reflected binary code) is a binary numeral system where two successive values differ in only one bit. Standard binary counting changes multiple bits simultaneously (e.g., 0111 to 1000 changes all four bits), which can cause glitches in hardware. Gray code eliminates this problem — each increment changes exactly one bit. This property makes Gray code essential for rotary encoders, analog-to-digital converters, Karnaugh maps, error correction, and any application where simultaneous bit transitions cause errors.

广告 · 消除?

How do you convert binary to Gray code?

The conversion uses a simple XOR operation: the most significant bit (MSB) stays the same, and each subsequent Gray code bit is the XOR of the current and previous binary bits. In formula form: gray[0] = binary[0], gray[i] = binary[i-1] XOR binary[i]. Alternatively, you can compute it as: gray = binary XOR (binary >> 1). For example, binary 1011 becomes Gray code 1110: the MSB stays 1, then 1 XOR 0 = 1, 0 XOR 1 = 1, 1 XOR 1 = 0.

How do you convert Gray code back to binary?

The reverse conversion builds the binary number from the MSB down: the MSB stays the same, and each subsequent binary bit is the XOR of the previous binary bit and the current Gray code bit. In formula form: binary[0] = gray[0], binary[i] = binary[i-1] XOR gray[i]. You can also compute it iteratively: start with mask = gray, then repeatedly do mask >>= 1 and gray ^= mask until mask is 0. The result is the binary value.

Why is Gray code used in rotary encoders?

Rotary encoders measure angular position using multiple tracks read by sensors. With standard binary, transitioning between certain values (like 0111 to 1000) requires all bits to change simultaneously — but mechanical sensors cannot switch at exactly the same instant, causing brief erroneous readings. Gray code guarantees that only one bit changes per step, eliminating these transitional errors. This makes rotary encoders reliable even at high speeds, which is critical in industrial automation, robotics, and motor control.

我的数据会被发送到服务器吗?

No — all conversions are performed entirely in your browser using JavaScript bitwise operations and BigInt for large values. No data is transmitted to any server. The XOR calculations, table generation, and batch processing all run client-side with zero network requests.

想要享受无广告的体验吗? 立即无广告

安装我们的扩展

将 IO 工具添加到您最喜欢的浏览器,以便即时访问和更快地搜索

添加 Chrome 扩展程序 添加 边缘延伸 添加 Firefox 扩展 添加 Opera 扩展

记分板已到达!

记分板 是一种有趣的跟踪您游戏的方式,所有数据都存储在您的浏览器中。更多功能即将推出!

广告 · 消除?
广告 · 消除?
广告 · 消除?

新闻角 包含技术亮点

参与其中

帮助我们继续提供有价值的免费工具

给我买杯咖啡
广告 · 消除?