Strings Extractor
Extract printable ASCII and Unicode strings from any binary file - runs entirely in your browser.
Drag & drop any binary file
File never leaves your browser - all processing runs locally
How it works
ASCII strings: scans byte-by-byte for consecutive printable characters (0x20–0x7E, plus tab/LF/CR), collecting runs of at least the minimum length.
UTF-16 LE strings: scans for pairs where the first byte is printable ASCII and the second is 0x00 - the most common Unicode encoding on Windows.
Patterns are highlighted: URLs, IP addresses, email addresses, and file paths. Large files are processed in chunks to keep the UI responsive.