Unicode to Text example 1
Input
\u0048\u0065\u006C\u006C\u006F
Output
Hello
Decodes a full escaped word into readable text.
Converters
Review practical Unicode to Text examples so you can understand expected input, output, and common patterns faster.
Use this Unicode to Text converter to decode escape sequences such as \u0041 back into readable characters. It is useful for developers, debugging text output, working with escaped data, and reversing Unicode escape notation found in code or raw payloads.
Example pages are especially useful for converters because they show what good input looks like, what kind of output to expect, and how the tool behaves in common scenarios.
Input
\u0048\u0065\u006C\u006C\u006F
Output
Hello
Decodes a full escaped word into readable text.
Input
Name: \u004A\u006F\u0068\u006E
Output
Name: John
Useful when escaped sequences are mixed into a larger text block.
Fix: Check that the source uses proper \uXXXX-style notation.
Fix: Use ASCII-to-text if the input is numeric character codes.
Fix: Review the source string for malformed or partial escape sequences.
After reviewing these examples, run the live tool with your own input. If your task involves a follow-up step, the related page can help you move to the next tool in the workflow.
Open the main Unicode to Text page and test your own real input.