UNIVERSAL CONVERSION
Convert.
Detect a format, surface the right conversions, and work locally when possible.
WHAT IT IS
One input. The relevant conversions.
Convert accepts pasted text or a file, detects what it is, and shows the operations that make sense for that format. Whenever the browser can do the work, the data stays on the device.
| Input family | Examples |
|---|---|
| Structured data | JSON, YAML, XML, CSV, and TSV formatting or conversion. |
| Text | Case changes, encoding, decoding, hashing, and related transforms. |
| Web values | URLs, timestamps, and colors in common representations. |
| Files and media | Format-specific tools selected after file inspection. Some media conversions may use the private conversion service. |
LOCAL BY DEFAULT
Why that phrase matters.
Most conversions are performed by code already running in your browser. A backend is used only for conversions the browser cannot reasonably handle. The static interface stays useful even when that optional service is unavailable.
SAFE EXPECTATION
Detection is a shortcut, not an oracle. Check the recognized input type before trusting an important result, especially with ambiguous plain text or mislabeled files.