hi all
can somebody point me to right direction
I need to convert Arabic letters into unicode string value regarding http://unicode.org/charts/
is there a php function for accomplishing this?
something like utf8_encode or similar
I've tried bin2hex and all other functions => with no luck.
example for letter "Š" to get value 0160
(from http://unicode.org/charts/PDF/U0100.pdf)
Arabic (and other) letters into unicode string
Moderator: General Moderators
Re: Arabic (and other) letters into unicode string
I'm not sure what you are trying to do but maybe iconv() will be in help?
There are 10 types of people in this world, those who understand binary and those who don't
Re: Arabic (and other) letters into unicode string
what I'm trying to do is to get code of specific character
example
$characterCode = getCharacterCode("Š");
and it returns me 0160 (please look on pdf file - I've provided URL)
is there some function build-ed in php
or 3rd part class or function
example
$characterCode = getCharacterCode("Š");
and it returns me 0160 (please look on pdf file - I've provided URL)
is there some function build-ed in php
or 3rd part class or function