About
Convert text to Unicode escapes and decode escaped sequences back to readable text.
What are Unicode escapes?
Unicode escape sequences represent characters using hexadecimal codes such as \u0041 or \u{1F600}. They are commonly used in code, JSON strings, and logs.
Encode and decode modes
Encode mode transforms readable characters into escape sequences. Decode mode reverses escaped values back to readable Unicode text.
When to use it
Use this converter when inspecting encoded payloads, preparing test fixtures, or debugging character-handling issues in APIs and applications.