FreeTools for your work
Developer Tools for JSON, Encoding, UUIDs, Timestamps, and Markdown
Development and debugging often involve small data tasks: format JSON, encode a URL, decode Base64, generate a UUID, convert timestamps, move between CSV and JSON, preview Markdown, or create a QR code for testing. This page collects lightweight FreeTools utilities for those checks. Use them for examples, test data, and non-sensitive content; secrets, personal data, and confidential company data need approved security workflows.
Common needs
- Small data conversions should not require a heavy IDE or service.
- Debugging often needs readable JSON, timestamps, and encoded strings.
- Test data and password generation must avoid exposing real secrets.
Recommended tools
JSON FormatterFormat, minify, and validate JSON snippets.Toolπ Local onlyUse NowNewestBase64 Encoder / DecoderEncode and decode UTF-8 Base64 text locally.Toolπ Local onlyUse NowNewestURL Encoder / DecoderEncode and decode URL-safe text.Toolπ Local onlyUse NowNewestUUID GeneratorGenerate secure UUID v4 values in batches.Generatorπ Local onlyUse NowNewestTimestamp ConverterConvert Unix, UTC, ISO, and local date formats.Toolπ Local onlyUse NowNewestCSV to JSON ConverterParse CSV and convert it into formatted JSON.Toolπ Local onlyUse NowNewestJSON to CSV ConverterConvert arrays of JSON objects into standard CSV.Toolπ Local onlyUse NowNewestMarkdown PreviewerPreview sanitized Markdown as you type.Toolπ Local onlyUse NowNewestQR Code GeneratorTurn links or text into a QR code.Generatorπ Local onlyUse NowPassword GeneratorCreate strong passwords from configurable character rules.Generatorπ Local onlyUse NowNewest
Suggested workflow
- Paste only test or anonymized data, not real tokens, passwords, or personal data.
- Format JSON or convert timestamps, then return to code to verify field meaning.
- After CSV/JSON conversion, spot-check field names, empty values, and special characters.
Related categories
FAQ
- Can I paste real API keys?
- No. Even when a tool is browser-oriented, real secrets should stay in approved secure tooling.
- Does JSON formatting fix data meaning?
- No. It helps readability and basic structure; field meaning, types, and business rules still need review.
- What should I watch for with timestamps?
- Check seconds vs milliseconds, time zone, daylight saving behavior, and display format.
- Can generated passwords be used for real accounts?
- It can help generate strong passwords, but use a password manager for storage and adjust to the target system rules.