Frequently Asked Questions

Are my JSON strings and JWTs safe to paste here?
Yes. All developer tools on ToolXHub execute locally via your browser's JavaScript engine. Your payloads are never sent over the network.
How does the JWT decoder work?
It splits the JWT string by the periods and decodes the Base64Url payload to reveal the JSON data. It does not verify the signature, meaning it doesn't need your secret key.
Are the UUIDs truly random?
Yes. We use the industry-standard 'uuid' npm package utilizing the crypto.getRandomValues API in your browser to generate cryptographically secure UUID v4 tokens.
Can I use these tools offline?
Yes, once the page has loaded, you can disconnect your internet and securely format JSON or encode Base64 strings.