example: NSString *day = [[NSString stringWithFormat:@"السبت"];and i think the
representation of this string in hex is this :%C7%E1%D3%C8%CA (windows-1256 encoding)
what i want is how to convert arabic string to hex like this.
example: NSString *day = [[NSString stringWithFormat:@"السبت"];and i think the
representation of this string in hex is this :%C7%E1%D3%C8%CA (windows-1256 encoding)
what i want is how to convert arabic string to hex like this.
A possible solution:
mut
will contain the hexadecimal encoded representation of day.