Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi

I am getting problem to generate composite Unicode character from two Unicode character.

Can Any one help me on this.

I have to make क्ष from joining क and ष.


With Thanks
Prakash Bhatta
Posted
Comments
lukeer 4-Oct-12 1:54am    
Would a unicode string be OK? Then you could simply use the addition overload for strings:
string concatenation = "क्" + "ष";
Venkatesh Mookkan 4-Oct-12 2:11am    
Hi Lukeer, its Hindi language and combining both will results with a different character and phonetics which is not possible.
lukeer 4-Oct-12 8:29am    
How sad. Does the little diagonal line under the first character stem from the combination?
Venkatesh Mookkan 4-Oct-12 8:44am    
Nope...

1 solution

Hey Prakash,
The solution you expecting itself a big task. .NET doesn't know Hindi first of all. So the combination logic or what so ever is not possible by just using string concatenation.

You can build your own dictionary for Hindi or use third party tools (Try Google Language tools) which does that.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900