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 9aaefaf commit cabdad2Copy full SHA for cabdad2
src/org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.java
@@ -82,7 +82,7 @@ public static String escapeUnicodeForSmtlib(String input) {
82
} else if (0x20 <= codePoint && codePoint <= 0x7E) {
83
sb.appendCodePoint(codePoint); // normal printable chars
84
} else {
85
- sb.append("\\u{").append(String.format("%05X", codePoint)).append("}");
+ sb.append("\\u{").append(String.format("%x", codePoint)).append("}");
86
}
87
88
return sb.toString();
0 commit comments