Unformat.online
More tools
Clean Text
Strip smart quotes, zero-width characters, non-breaking spaces, and invisible Unicode from any pasted text.
Markdown Viewer
Live split-view editor and renderer — edit on the left, preview on the right.
Format JSON
Prettify or minify JSON. Auto-fixes single quotes, trailing commas, and unquoted keys.
Format SQL
Format SQL for MySQL, PostgreSQL, BigQuery, T-SQL, and more — uppercase keywords, proper indentation.
Format YAML
Format and validate YAML. Catches indentation errors in Kubernetes, Docker Compose, and GitHub Actions files.
Format XML
Indent and pretty-print XML. Works with SOAP, RSS, Maven POM, Android manifests, and SVG.
FileSQL
Drop a CSV or JSON file and query it with SQL instantly — no upload, no server.
Text Diff Checker
Compare two texts, JSON payloads, or config files and see exactly what changed, line by line.
Log File Viewer
Open multi-gigabyte log files instantly — chunked indexing and virtual scrolling handle 10GB+ files without freezing your tab.
JWT Debugger
Decode JWTs instantly — view all claims, check expiry, and see the algorithm. Token never leaves your browser.
Shredder
Remove EXIF, GPS, and author metadata from images and PDFs. Redact secrets from text and log files.
SSL Certificate Checker
Check any domain's SSL/TLS certificate — expiry, issuer, and Subject Alternative Names.
Base64
Encode text or files to Base64, or decode Base64 strings and preview images inline.
UUID Generator
Bulk-generate cryptographically random v4 UUIDs using crypto.randomUUID(). Copy one or all at once.
URL Encode / Decode
Encode URLs or decode percent-encoded strings like %20, %3D, %26 — instantly.
CronScope
Paste a cron schedule and see every run on a 12-month calendar. Never misread a cron expression again.

Log File Viewer

Open multi-gigabyte log files instantly — chunked Web Worker indexing and virtual scrolling handle 10GB+ files without freezing your tab.

Loading tool…

Instant, Any Size

A Web Worker indexes the file in 50MB chunks and builds a lightweight byte-offset table — the file itself is never loaded into memory.

Constant Memory Scrolling

Only the handful of rows on screen are ever read and decoded, on demand, straight from the file — whether it's 1MB or 100GB.

Full-File Search

Search runs asynchronously in the background and streams results as it scans, so you can start jumping to matches before it finishes.

How to Open a Large Log File

  1. Drop a log file onto the box above, or click to browse — any size, any extension.
  2. Wait for indexing. A Web Worker scans the file in 50MB chunks to build a byte-offset index — this is typically close to disk read speed.
  3. Scroll, search, and jump to matches. Only the visible rows are ever decoded, so scrolling stays smooth regardless of file size.

How It Stays Fast at 10GB+

Most browser-based file tools read the whole file into a JavaScript string — fine for kilobytes, but a multi-gigabyte log file would either crash the tab or freeze it for minutes. This tool never does that. A Web Worker reads the file in 50MB chunks and records only the byte offset of every 128th line, off the main thread. That tiny offset table is enough to know exactly where any line starts, so the viewer can jump straight to the bytes for whatever rows are currently on screen — typically fewer than 100 at a time — decode just those, and discard everything else. The file itself is never fully loaded into memory.

Frequently Asked Questions

Does this upload my log file anywhere?

No. The file is read directly by your browser and never leaves your device — there is no upload and no server involved.

How large a file can it actually open?

It's designed for 10GB+ files. The chunked index and virtual scrolling mean memory use stays roughly constant regardless of file size.

Why does the scrollbar feel less precise on very large files?

Once a file has hundreds of millions of lines, one pixel of scroll necessarily represents many lines — the same tradeoff tools like VS Code's large-file mode make. Use the Go to line box or jump-to-match navigation for exact positioning.

Does search find matches across the whole file, or just what's visible?

The whole file. Search runs in a background Web Worker and streams matches back as it scans, so you can start jumping to results before the full scan finishes.