or click to browse — supports .xlsb, .xlsx, .xls
100% client-side — your files never leave your browser
Need to turn a spreadsheet into structured data for your application? XLSB Viewer lets you convert any XLSB, XLSX, or XLS file to JSON directly in your browser. Drop your file above, click the JSON toggle, and download your data in seconds.
All conversion happens client-side using WebAssembly. Your file is never sent to a server, making this the safest way to convert sensitive spreadsheet data to JSON.
Each row becomes a JSON object with column headers as keys. This is the most common format for APIs and databases.
[
{ "Name": "Alice", "Age": 30, "City": "London" },
{ "Name": "Bob", "Age": 25, "City": "Paris" }
]A 2D array where the first row contains headers. Useful for CSV-like processing and data science workflows.
[ ["Name", "Age", "City"], ["Alice", 30, "London"], ["Bob", 25, "Paris"] ]
Data organized by column. Ideal for analytics, charting libraries, and column-oriented databases.
{
"Name": ["Alice", "Bob"],
"Age": [30, 25],
"City": ["London", "Paris"]
}