I am trying to convert arabic characters to unicode. But for the same string, I am getting different unicodes.
Here is the Unicode for "hello" in Arabic translated using google translate: مرحبا The unicode for that is: "%u0645%u0631%u062D%u0628%u0627"
Here is the Unicode for "hello" in Arabic translated using deep translator in python: ﻣﺮﺣﺒﺎ The unicode for that is: "%uFEE3%uFEAE%uFEA3%uFE92%uFE8E"
Why a I getting different unicodes for the same thing? I am getting different font over here but if you try to convert these unicodes you get the same thing as shown in the image below.
I want the unicode to start with "%u06" only and not "%uFE".