Skip to main content
Toollyz

Search tools

Search for a command to run...

Converters

Switch between formats, units, encodings and standards.

Converters directory

Converters for every format, unit and encoding

A surprising amount of friction in everyday work comes down to two things that should agree but do not: the format you have and the format something else expects. A colleague sends measurements in one unit system, a form demands another. A file is in one encoding, an importer only reads a different one. A timestamp arrives as a cryptic number and you need a human date. Converters exist to dissolve these mismatches. The tools in this category take a value in one representation and give you the exact equivalent in another, instantly and without you having to remember a formula or look up a conversion factor.

What makes a good converter is precision and speed: the right answer, shown the moment you type, with the units and rules made explicit so you are never left wondering what it assumed. Everything in this category runs in your browser, which means conversions are immediate and your inputs — which might be financial figures, internal data, or private measurements — are never sent anywhere. You get the reliability of a calculator that lives on your own device with the convenience of a tool that is always one tab away.

The kinds of conversion covered

The category spans several distinct families of conversion. Unit converters handle the physical world — length, weight, temperature, area, volume, speed — translating between metric and imperial and between the many sub-units within each. These are the conversions that come up in cooking, travel, engineering, shipping and science, where getting a factor wrong has real consequences. Number-base converters move values between decimal, binary, hexadecimal and octal, the representations that underpin computing and low-level debugging.

Data and encoding converters translate between text encodings, between data formats, and between the ways the same information can be serialized for different systems. Time and date converters turn timestamps into readable dates, switch between time zones, and compute durations. Currency and rate converters apply a conversion factor to monetary amounts. Each family solves the same fundamental problem — same value, different representation — but the domain knowledge baked into each one is what saves you from manual error.

    Conversions people reach for regularly:

  • Length, weight and temperature between metric and imperial units.
  • Decimal, binary, hexadecimal and octal for programming and debugging.
  • Unix timestamps to human-readable dates and back again.
  • Time across zones when scheduling across regions.
  • Cooking measurements between volume, weight and different national systems.
  • Text and data between encodings or serialization formats for import and export.

Why manual conversion is a trap

Doing conversions by hand feels harmless until a small slip causes a large problem. Conversion factors are easy to misremember — there are 2.54 centimeters in an inch, not 2.4; a kilometer is 0.621 miles, not 0.625 — and rounding at the wrong step compounds errors. Temperature is especially treacherous because Fahrenheit and Celsius do not share a zero, so you cannot just multiply; you have to apply an offset as well. Number bases trip people up because the same digits mean different values in different bases, and a hexadecimal letter has no obvious decimal equivalent without calculation.

A dedicated converter removes the room for these mistakes. It applies the exact factor, handles offsets and rounding correctly, and shows the result with appropriate precision rather than a guessed-at approximation. For anything where the number actually matters — a dosage, a dimension, a financial figure, a piece of code — that reliability is worth far more than the few seconds it takes. The tool also makes its assumptions visible, so you can confirm it is converting the units you actually meant.

Timestamps, time zones and dates

Time conversion deserves special mention because it causes an outsized share of bugs and missed meetings. Computers often store time as a Unix timestamp — the number of seconds since the start of 1970 — which is precise but completely unreadable to a human. Converting it to a real date, and being explicit about whether that date is in your local zone or in coordinated universal time, is the difference between debugging an issue quickly and chasing a phantom off-by-one error.

Time-zone conversion has its own pitfalls: zones shift with daylight saving on different dates in different places, and a meeting that is clear in one city can be ambiguous in another. A converter that handles these rules for you, and shows the equivalent moment in the zone you care about, turns scheduling and log-reading from a source of errors into a quick lookup. The same applies to duration math — computing how long is between two points in time without manually carrying across minutes, hours and days.

Precision and trust

The value of a converter is entirely in being correct, so these tools are built to show their work: the units on both sides, sensible precision, and immediate updates as you change the input. Because they run locally, the result appears instantly and your numbers stay private — useful when the values are sensitive, such as financial figures or proprietary measurements. When a result matters enough to act on, you want a tool that is deterministic and transparent rather than a black box, and that is the standard this category aims for.

Encodings and why text sometimes turns to gibberish

If you have ever opened a file and found accented letters replaced by strange symbols, or a name rendered as a string of question marks and boxes, you have met a character-encoding mismatch. Computers store text as numbers, and an encoding is the agreement about which number means which character. When a file is written with one encoding and read with another, the agreement breaks and the text comes out scrambled — the data is intact, but it is being interpreted by the wrong rulebook.

This used to be a constant headache because dozens of incompatible encodings were in use. Today most of the web has standardized on a single universal encoding that can represent virtually every character in every language, which is why a converter's job is often to translate older or regional encodings into that modern standard so the text displays correctly everywhere. Knowing that the underlying bytes are fine and only the interpretation is wrong is reassuring: the fix is a conversion, not a retype.

The same principle underlies the other encoding conversions in this category. Turning binary data into a text-safe form so it can travel through systems that only handle text, or translating between the ways structured data is serialized, are all variations on representing the same information under a different agreement. A converter that applies the correct mapping means you can move data between systems that expect different formats without it arriving as gibberish on the other side.

What makes these conversions feel reliable is that they are reversible and lossless when done correctly: the information is preserved exactly, only its representation changes, so converting and converting back returns precisely what you started with. That is a meaningfully different promise from the lossy compression used on images or audio, where some detail is permanently discarded. Understanding which conversions preserve everything and which trade something away helps you reach for the right tool with the right expectations, and it is why encoding conversions can be applied freely without the nagging worry that each pass quietly degrades your data.

Frequently asked questions

Are these converters accurate enough to rely on?

Yes. Each converter applies the exact, standard conversion factor and handles details like temperature offsets and base-digit values correctly, then displays the result with appropriate precision. The tools also make their units explicit so you can confirm the conversion matches what you intended before you act on the number.

Why can't I just multiply to convert Fahrenheit to Celsius?

Because the two scales do not share a zero point. Converting between them requires subtracting 32 and then scaling by five-ninths (or the reverse), so a simple multiplication gives the wrong answer. A dedicated temperature converter applies the offset and the scaling in the right order automatically.

What is a Unix timestamp and why convert it?

A Unix timestamp is the number of seconds elapsed since the start of 1970, which is how many systems store time. It is precise but unreadable to people, so converting it to a normal date — and specifying whether that date is local or UTC — makes logs, databases and API responses understandable.

Do the converters work with binary and hexadecimal?

Yes. Number-base converters translate values between decimal, binary, hexadecimal and octal, which is essential when reading memory addresses, color codes, bit flags and other low-level data where the same value appears in different bases.

Is my data kept private when I convert it?

It is. Conversions run entirely in your browser, so the values you enter — including financial figures or proprietary measurements — are processed on your own device and never transmitted to a server.

Does converting between encodings change or lose any of my data?

No. Encoding and base conversions are reversible and lossless when done correctly — only the representation changes, never the underlying information, so converting and converting back returns exactly what you started with. That is different from lossy image or audio compression, where some detail is permanently discarded, so you can apply these conversions freely without degrading your data.