Developer & Creator Tools Glossary
Plain-language definitions for the utilities Zerethon Tools offers — each entry links to a free, browser-based implementation.
- Base64 Encoder & Decoder
- Base64 is a binary-to-text encoding (RFC 4648) that represents arbitrary bytes using 64 printable ASCII characters (A–Z, a–z, 0–9, plus two extras). The standard variant uses `+` and `/`; the URL-safe variant substitutes `-` and `_` so the output can travel through URLs and filenames untouched. A Base64 Encoder converts text or binary files to and from this representation.
- Color Converter
- A Color Converter is a tool that translates a single color value between several model spaces — most commonly HEX (web shorthand), RGB / RGBA (red-green-blue with optional alpha), HSL (hue/saturation/lightness), HSV (hue/saturation/value), and CMYK (print-oriented cyan/magenta/yellow/key). Converters normalise to a common internal representation and round-trip across formats, with a swatch preview to verify the result visually.
- Crontab Translator
- A Crontab Translator (also called a cron expression decoder) is a tool that converts a 5-field or 6-field cron schedule into a plain-English description like "Every weekday at 03:30" and computes the next firing times. It catches off-by-one mistakes — accidentally scheduling at 0 instead of every hour — before the cron rule ever reaches a production scheduler.
- Image Compressor
- An Image Compressor is a tool that reduces the file size of an image while keeping its visible quality acceptable for screen or print. Lossy formats (JPG, WebP) drop perceptual detail; lossless modes re-encode without quality loss. Browser-based compressors run the encoder in JavaScript or WebAssembly so the original image never leaves the user's device — important for screenshots, design drafts, or anything not yet public.
- JSON Formatter
- A JSON Formatter is a tool that converts compact or minified JSON data into a structured, indented form for readability, and reverses the process for transmission. It validates syntax against RFC 8259 / ECMA-404, detects errors with line and column positions, and renders output as pretty-printed text, minified text, or a collapsible tree.
- Password Generator
- A Password Generator is a tool that produces random character strings suitable for use as login credentials. Secure generators draw entropy from a cryptographically strong random source (in browsers, the Web Crypto API's `crypto.getRandomValues`) rather than `Math.random`, and let the user mix uppercase, lowercase, digits, and symbols to satisfy site-specific complexity rules.
- SQL Formatter
- An SQL Formatter is a tool that reformats SQL statements with consistent indentation, keyword casing, and line breaks so the query is easier to read and review. Dialect-aware formatters apply the correct reserved-word list and join syntax for each database engine (MySQL, PostgreSQL, SQLite, SQL Server, Oracle, BigQuery).
- Text Diff
- A Text Diff tool compares two blocks of text and highlights the additions, deletions, and unchanged regions. Line-level diffs match the behaviour of `git diff`; word- and character-level diffs surface small edits inside long lines. Three display modes are common: side-by-side (original vs new), inline (one stream with insertions/deletions marked), and unified patch (the format git produces).
- Timezone Converter
- A Timezone Converter is a tool that maps a date and time in one IANA timezone (for example, "America/New_York") to its equivalent moment in another (for example, "Asia/Tokyo"). DST-aware converters apply the correct offset for the chosen day, including the spring-forward and fall-back transitions. Multi-city comparison lets meeting planners see one moment across every participant's wall clock.
- UUID Generator
- A UUID (Universally Unique Identifier) is a 128-bit value defined by RFC 9562 (formerly RFC 4122). UUID v4 is randomly generated; v1 is timestamp + MAC-derived; v7 is time-ordered for database-friendly sorting; the Nil UUID is all zeros. A UUID Generator produces these values without coordinating with any central authority, with collision odds negligible for practical use.
Build, share, and grow on Zerethon Social
Free signup. Earn points, collect achievements, and connect with creators worldwide.