Link to home
Start Free TrialLog in
Avatar of TransBind
TransBind

asked on

convert unicode representation of a character to a regular/windows string

I would like to convert this string

string temp = "abj"
to unicode representation for example
a in unicode is U+0061 or 61
b in unicode is U+0062 or 62
j in unicode is U+006A or 6A

the final result should be
string result = "61626A"

I also would like to convert it back from Unicode to regular string or string temp = "abj"




ASKER CERTIFIED SOLUTION
Avatar of bsmuehmer
bsmuehmer
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial