Skip to content
Tools

Search tools

73 tools available type a name, a format, or whatever it is you want to do.

Preparing the tool list…

↑ ↓ selectEnter to openEsc to close

Menu

Text & encoding tools

Decode a bearer token, encode Base64, compute hashes, test regex, compare two documents, or clean up a long list. All of it runs in the browser including the tokens you shouldn't be pasting into someone else's site in the first place.

Files are processed on your own device nothing is uploaded to a server.

Related tools

Questions that come up often

What people most often ask before handing over a file privacy, size limits, and when quality actually drops.

Where does the text I paste end up?

Nowhere. Text tools get used most often for exactly the most sensitive things access tokens, file hashes, snippets of config so all of it is handled inside your browser. What you paste isn't stored, isn't logged, and never appears in the page's address.

Is it safe to paste a bearer token here?

It is, because the token goes nowhere. It's decoded inside the tab and no network request carries its contents you can confirm that in the Network tab of DevTools. That said, a token that has already leaked elsewhere should still be revoked.

Base64 is encryption, right?

It isn't, and this matters. Base64 is only a way of rewriting data so it survives being passed around as text anyone can reverse it without any key at all. Never use Base64 to hide something.

Where is the hash computed?

On your device, using the browser's Web Crypto. Even large files are read from disk in chunks, so checksumming a few hundred megabytes doesn't upload anything.

Why is my JSON rejected when it looks fine?

Usually because of something you can't see: a trailing comma on the last element, curly quotes pasted in from a document, or a comment, which JSON simply doesn't allow. The JSON tool points at the line and column, so there's nothing to guess.

Are the passwords generated here stored anywhere?

No. They're generated on your device, never sent to a server, never stored, and never appear in the page's address. Closing the tab erases them completely so copy one into your password manager first.