diff --git a/src/org/gildur/simplepropertieseditor/editor/PropertiesDocumentWrapper.java b/src/org/gildur/simplepropertieseditor/editor/PropertiesDocumentWrapper.java index 62fc54d..fc5ada7 100755 --- a/src/org/gildur/simplepropertieseditor/editor/PropertiesDocumentWrapper.java +++ b/src/org/gildur/simplepropertieseditor/editor/PropertiesDocumentWrapper.java @@ -113,7 +113,7 @@ public class PropertiesDocumentWrapper implements IDocument { for (int i = 0; i < content.length(); i++) { char c = content.charAt(i); if (asciiCharset.encode(String.valueOf(c)).equals(encodedUnknown)) { - buffer.append(String.format("\\u%04x", (int) c)); + buffer.append(String.format("\\u%04X", (int) c)); } else { buffer.append(c); }