Fix missing characters after Unicode in RTF files (#3898)

This commit is contained in:
Tobias Hagemann
2025-06-16 10:36:19 +02:00
committed by GitHub
parent 00f5d433da
commit f1ef506e2b
2 changed files with 3 additions and 3 deletions

View File

@@ -79,7 +79,7 @@ public class ReadmeGenerator {
} else if (c <= 0xFF) {
sb.append("\\'").append(String.format("%02X", c));
} else if (c < 0xFFFF) {
sb.append("\\uc1\\u").append(c);
sb.append("\\u").append(c);
}
});
}