Domanda

Possible Duplicate:
How do convert unicode escape sequences to unicode characters in a .NET string

im translating zimbra , and i confusing to know whats this string encoding and what tools i can use to convert utf-8 encoded string to this kind ?

String:

errorMaintenanceMode = \u0628\u0627 \u0639\u0631\u0636 \u067E\u0648\u0632\u0634 \u062D\u0633\u0627\u0628 \u06A9\u0627\u0631\u0628\u0631\u06CC

È stato utile?

Soluzione

Those code points reside in the Arabic block of the Unicode Basic Multilingual Plane (BMP). I determined this using BabelMap. There is an online version you can use as well.

Using the application you can convert between:

\u0628\u0627 \u0639\u0631\u0636 \u067E\u0648\u0632\u0634 \u062D\u0633\u0627\u0628 \u06A9\u0627\u0631\u0628\u0631\u06CC

and:

با عرض پوزش حساب کاربری

For programmatic tools look at the ICU Project.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top