Forge a byte, read it in hex.

Toggle the eight bits below. Watch the nibbles split into hex digits in real time, then copy the result straight into your code as a C-style literal.

8-bit byte editor

high nibble
low nibble
decimal 0

Hexadecimal result

0x00

Nibble-split view

4 bits → 1 hex digit
high nibble 0
hex digit 0
low nibble 0
hex digit 0
0 concat 0 = 0x00

Step-by-step breakdown