I have a program in C# that reads java properties file and get the string content of the file. and the java properties file contain a string which look like this
DICOM_Nodes=W\u0119z\u0142y DICOM
but when StreamReader reads this line,
StreamReader reader = new StreamReader(file,Encoding.UTF8);
it return the line in the same way (with the \u0119 instead of 'ę')
but if i do
string value = "W\u0119z\u0142y DICOM";
then c# understands it perfectly
sample output:
from StreamReader: W\u0119z\u0142y DICOM
from value: Węzły DICOM
anyone know how to conver the string from StreamReader to a readable form?