When I use Sinhala Unicode word "ප්රවාහන" in JLabel it renders as "ප්රවාහන".
I think is problem in ZWJ character. Any ideas how to fix it?
I'm using Java 7 in Windows 8.1 (64 bit).
There is a ZERO WIDTH JOINER (U+200D) in the first string. Try removing them:
new JLabel(s.replace("\u200D", ""));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With