EditSafely

Convert Any Base to UTF8

Quickly convert arbitrary base numbers to UTF8. Runs entirely in your browser, so your data never leaves your device.

0 chars · 0 lines

Output

The result appears here as you type.

Options

How to use Convert Any Base to UTF8

  1. 1. Paste the numbers to decode. Enter the numeric values you want treated as code points, such as 41 for the letter A, into the input pane. Separate multiple values with spaces.
  2. 2. Set the Base. Type the radix your numbers are written in, from 2 for binary up to 36 for full alphanumeric digits. Base 16 suits hex dumps, base 8 suits legacy octal escapes.
  3. 3. Read the decoded UTF8 characters. Each number is reinterpreted in the chosen base, treated as a code point, and rendered as a UTF8 character in the output pane, ready to copy.

When to use Convert Any Base to UTF8

Convert Any Base to UTF8 handles code points written in a radix other than the usual decimal or hex. Some puzzles, legacy systems and custom serializers store character values in base 36, base 20 or another arbitrary base. This tool lets you set exactly the base your numbers use and decodes them straight to characters.

  • Solving a base-36 puzzle or CTF challenge. A capture-the-flag puzzle encodes the flag as a sequence of base-36 numbers to make it less obviously text. Setting Base to 36 and pasting the sequence reveals the hidden message immediately.
  • Reading a custom serialization format. An older embedded system logs character codes in base 20 to save log space. Matching the Base setting to the system's documented radix turns the raw log numbers back into readable text.
  • Verifying a homework or teaching exercise. A computer science course asks students to hand-convert character codes between number bases. Checking your manual base-13 conversion against this tool confirms whether your answer decodes to the expected letters.

Examples

Convert

Input

41

Output

A

About the Convert Any Base to UTF8 tool

Convert Any Base to UTF8 runs as plain JavaScript in your browser tab, with no server behind it. Quickly convert arbitrary base numbers to UTF8. Whatever you put in stays on your device from start to finish.

The tool is part of EditSafely's UTF-8 Tools section, 69 single-purpose utilities built around the same idea: open the page, get the result, keep your data to yourself.

You can shape the output with the Base setting, and the result refreshes the moment you change it. A worked example further down the page shows exactly what the tool produces for a real input.

That local-first design has practical benefits beyond privacy. The tool keeps working on a flaky connection once the page has loaded, results are instant because nothing round-trips to a server, and it is safe to use with confidential material.

Frequently asked questions

Is Convert Any Base to UTF8 free to use?

Yes, it is completely free. All 2,658 tools on EditSafely work without an account, a subscription or usage limits.

Is it safe to paste sensitive or confidential data?

Everything happens locally. Your browser downloads the tool's code once, then does all the processing itself; nothing you enter is transmitted, stored or logged. You can even go offline after the page loads and it will still work.

How much text can I process at once?

There is no fixed limit. Because the work happens on your own device rather than on a shared server, the practical ceiling is your machine's memory, which comfortably handles inputs far larger than typical online tools allow.

Do I need to sign up or install anything?

No. The tool works in any modern browser on desktop, tablet or phone. There is no account to create, no extension to add and no software to install.

How do I use the result?

The output panel has a one-click copy button, and you can keep refining the input while you work; the result updates in place as you type.