// this is an invalid unicode code point
const bad = "\udc11"
// but i can console.log it:
console.log(bad)
// prints: �
// and i can use it in other strings:
const foo = bad + "-" + bad
// but when i try to evaluate it in the repl:
> badAndPrefixed
Unterminated string literal Unknown exception