Steps to reproduce
const enum Currency {
Euro = "\€",
}
const currency = Currency.Euro;
Behavior with typescript@6.0
"use strict";
const currency = "\u20AC" /* Currency.Euro */;
Behavior with tsgo
"use strict";
const currency = "\u00E2\uFFFD\uFFFD" /* Currency.Euro */;
Steps to reproduce
Behavior with
typescript@6.0Behavior with
tsgo