Type your text, and the tool encodes it into \u escape-sequence Unicode code points.
A \u followed by a 4-digit hex code point, like \u0041 for 'A'. Used in JavaScript, JSON, Java, C.
\u is for 4-digit BMP code points. \U (Python) handles full range including emoji above U+FFFF.
Only encode non-ASCII characters for safety. Encoding ASCII is valid but unnecessary.