0

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

Community
  • 1
  • 1
bizzr3
  • 1,925
  • 4
  • 24
  • 37

1 Answers1

2

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.

Robert Groves
  • 7,574
  • 6
  • 38
  • 50