Unicode Inspector — illustrative example INPUT Inspect these two strings: café and café. Compare their code points and their NFC-normalized values. RESULT café: U+0063 U+0061 U+0066 U+00E9 (4 code points). café: U+0063 U+0061 U+0066 U+0065 U+0301 (5 code points). Both normalize to café under NFC. Their original sequences differ; preserve originals when exact byte identity matters. REVIEW Inspect code points when text looks identical but behaves differently. Normalize only when the destination's rules allow it. This is a teaching example, not a live execution record.