How Unicode escaping works
Each character is written as its code point in one of three notations: \uXXXX, brace-delimited \u{X…}, or U+XXXX.
Encode text as \uXXXX, \u{X…}, or U+XXXX Unicode escape sequences. Runs entirely in your browser — input is never uploaded.
Each character is written as its code point in one of three notations: \uXXXX, brace-delimited \u{X…}, or U+XXXX.
\uXXXX splits characters outside the Basic Multilingual Plane (like emoji) into a surrogate pair of two escapes; \u{X…} and U+XXXX represent the full code point in a single token.
Decoding accepts all three styles in the same input, so mixed-style text pasted from different sources still decodes correctly.