Converting Properties Files to Escaped Unicode
Using Unicode characters in Java with properties files is somethimes problematic, when we want to show signs and symbols that are not ASCII characters...
Converting Properties Files to Escaped Unicode is a must!
when we have problem with displaying especial signs:
So we want to send u-escaped Unicode, using \uXXXX.
As not only Java, but also JavaScript/JSON knows this convention, we only need this u-escaping in java on the server.
Solution:
- https://stackoverflow.com/questions/38990131/reading-unicode-characters-from-properties-file-java
- https://docs.oracle.com/cd/E23095_01/Platform.93/ATGProgGuide/html/s1816convertingpropertiesfilestoescap01.html
- http://www.cs.technion.ac.il/~imaman/programs/unicodeprops.html
Symbols, icons, "visual thinking" signs and letters:
- https://en.wikipedia.org/wiki/List_of_Unicode_characters
- https://www.compart.com/en/unicode/
- https://unicode-table.com/en/#latin-extended-a
- https://www.fileformat.info/info/unicode/category/So/list.htm
- http://xahlee.info/comp/unicode_sex_symbols.html
- https://www.toptal.com/designers/htmlarrows/symbols/
- https://tutorialzine.com/2014/12/you-dont-need-icons-here-are-100-unicode-symbols-that-you-can-use
No comments:
Post a Comment