Formateadores y código
Protobuf Playground
Parse, browse and encode protobuf messages.
(run decode)
Nota del editor
Understanding · Tag + wire-type + value — the format that won the binary wars.
Este capítulo en profundidad está disponible solo en inglés por el momento. La herramienta de conversión de arriba funciona en tu idioma; el artículo explicativo extenso aún no se ha traducido.
Preguntas frecuentes
Quick answers.
›What is Protobuf?
Protocol Buffers are Google's serialisation format for structured data, similar to XML or JSON but smaller and faster. It requires a schema defined in a `.proto` file to encode and decode messages.
›Is my schema or data sent anywhere?
No. The compiler and encoder run entirely within your browser session using a JavaScript implementation of the Protobuf library.
›Which versions are supported?
The playground supports both `proto2` and `proto3` syntax versions. Ensure your schema includes the `syntax = "proto3";` header if using modern features.
›How do I handle binary data?
You can paste your encoded message as a Hex string or Base64. The tool will attempt to decode it against your provided proto definition.
La gente también busca
Herramientas relacionadas
More in this room.
- Conversor de JSON a XMLConvierte JSON a XML limpio y bien formado.
- Conversor de CSV a JSONConvierte hojas de cálculo en arrays JSON — al instante.
- Conversor de YAML a JSONConvierte YAML a JSON — instantáneo, solo en navegador.
- Convertidor de JSON a ExcelConvierte matrices JSON en hojas de cálculo de Excel.
- Convertidor TOML ⇄ JSONConvierte entre TOML y JSON — en ambas direcciones.
- Convertidor INI ⇄ JSONConvierte archivos de configuración INI a JSON y viceversa.