I have a textbox in which user input Urdu. But when data is stored in DB it is stored like an inverted question mark (¿¿¿¿¿¿¿). The data type of column is Nvarchar2.
Asked
Active
Viewed 416 times
1 Answers
2
Convert the data into unicode format either utf-8
or utf-16
and store into data base

Abdul Rasheed
- 6,486
- 4
- 32
- 48

Ananth
- 34
- 2
-
how to convert it?? as now I am using ascii code to convert english into urdu – raja Oct 25 '17 at 04:26
-
If your using java then follow this https://stackoverflow.com/questions/4526192/convert-a-string-containing-ascii-to-unicode link – Ananth Oct 25 '17 at 06:07
-
I am using C# to convert – raja Oct 25 '17 at 07:42