Convert Latin1 to UTF8
Convert ISO-8859-1 encoding to UTF8 encoding. Runs entirely in your browser, so your data never leaves your device.
0 chars · 0 lines
Output
The result appears here as you type.
How to use Convert Latin1 to UTF8
- 1. Paste the Latin1 byte values. Enter hex byte values such as 48 e9 into the input pane. These represent ISO-8859-1 bytes, a common encoding for Western European text before UTF8 became standard.
- 2. Let the decoder map each byte to a character. Latin1 assigns every byte value from 0 to 255 directly to a Unicode code point of the same number, so the tool maps each byte straight across to its character.
- 3. Copy the decoded UTF8 text. Copy the result, such as Hé, from the output pane once the ISO-8859-1 bytes have been reinterpreted as proper UTF8 text.
When to use Convert Latin1 to UTF8
Convert Latin1 to UTF8 decodes ISO-8859-1 byte values into the UTF8 text they represent. Latin1 was the default encoding for Western European languages for decades and still appears in older files, HTTP headers and legacy databases. This tool applies Latin1's simple one-byte-per-character mapping and shows the result as readable UTF8.
- Fixing accented characters from an old website export. A website built years ago declared ISO-8859-1 as its charset, and an export of its content shows broken accented letters when opened as UTF8. Decoding the raw bytes here recovers words like café correctly.
- Reading a legacy French or German database dump. A database dump from a system that predates widespread UTF8 adoption stores accented letters as single Latin1 bytes. Decoding sample values here confirms the encoding before a full migration.
- Debugging an HTTP response with the wrong charset header. An API responds with text/plain and no charset, and the client assumed UTF8 when the server actually sent Latin1. Decoding the raw bytes here proves what the server actually meant to send.
Examples
Decode
Input
48 e9
Output
Hé
About the Convert Latin1 to UTF8 tool
Convert Latin1 to UTF8 runs as plain JavaScript in your browser tab, with no server behind it. Convert ISO-8859-1 encoding to UTF8 encoding. 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.
There is nothing to configure. Provide the input and the result appears on its own. 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
Does Convert Latin1 to UTF8 cost anything?
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?
No data leaves your device. The whole tool is JavaScript that runs inside your browser tab, so there is no upload, no server-side processing and no log of what you did. If you disconnect from the internet after the page loads, it keeps working.
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?
Nothing to install and no account needed. Open the page in any up-to-date browser, including on a phone or tablet, and the tool is ready.
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.