This commit is contained in:
Simon Gardling
2022-06-01 02:29:48 -04:00
parent 4cdd764956
commit 252312b1f7
3 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ pub fn to_unicode_hash(c: char) -> String {
c.escape_unicode()
.to_string()
.replace(r#"\\u{"#, "")
.replace("{", "")
.replace("}", "")
.replace('{', "")
.replace('}', "")
.to_uppercase()
}