Paste a raw 8-byte UDP header in hex and decode ports, length, and checksum.
UDP headers are exactly 8 bytes: source port, destination port, total length, and checksum. No flags or sequence numbers — that simplicity is why DNS and streaming use it.
0035c3b8001c2a9c → src 53 (DNS), dst 50040, len 28Exactly 8 bytes (16 hex chars) for the header; extra bytes are payload.
Port 53 is DNS — most short UDP datagrams to/from 53 are DNS queries.