I am importing data
data={"t*α₁","α₁*α₄"} But unfortunately, all of the subscripts are in Unicode:
FullForm[data] List["t*α\:2081","α\:2081*α\:2084"] i.e. subscript 1 is encoded as \:2081 etc. Is there a way of converting these Unicode subscripts into Mathematica's more standard subscripts
desiredoutput={t Subscript[α, 1], Subscript[α, 1] Subscript[α, 4]} Manipulating the data is difficult with the current Unicode formatting of the subscripts.
ToExpression[data] /. \[Alpha]₁ -> Subscript[\[Alpha], 1]and similar others. $\endgroup$