static S unescapeMultichars(S s) { ret regexReplace(s, "\\[xchar ([a-f0-9]+)\\]", func(Matcher m) { codePointToString(hexToInt(m.group(1))) }); }