What Protobuf VarInt Converter does
Encode or decode signed 32-bit Protocol Buffers style base-128 varints using the two’s-complement uint32 representation.
Input and output contract
Values must fit signed 32-bit range and encoded values must terminate within five bytes. Space-separated varint bytes or signed decimal output.
Safe workflow
Choose direction and enter the signed integer or complete varint byte sequence. SaveEditor processes this operation locally in the browser and does not infer a game format from the input.
Important limitations
This profile is not ZigZag encoding; negative int32 values use their unsigned 32-bit two’s-complement representation. Use the ZigZag Tool when the format explicitly stores sint32/sint64 ZigZag values instead.