Secure strings & GUIDs
UUID v4 ignores the length setting and always outputs the standard 36-character form
(8-4-4-4-12). Tokens use cryptographic randomness from window.crypto.
When to use which option
UUID v4 is ideal for IDs in logs, databases and test data. Hex and base62 tokens are useful in URLs, config files and short invite codes, where you may prefer shorter strings.
Hash & checksum helper
Hashes are calculated for the exact bytes of this text (UTF-8 encoded). They are suitable for integrity checks and content IDs, not password storage.