We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 780be3f commit d5f4f39Copy full SHA for d5f4f39
src/org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.java
@@ -90,7 +90,7 @@ public static String escapeUnicodeForSmtlib(String input) {
90
} else if (0x20 <= codePoint && codePoint <= 0x7E) {
91
sb.appendCodePoint(codePoint); // normal printable chars
92
} else {
93
- sb.append("\\u{").append(String.format("%05X", codePoint)).append("}");
+ sb.append("\\u{").append(String.format("%x", codePoint)).append("}");
94
}
95
96
return sb.toString();
0 commit comments