When I concatenate the following two unicode characters I see both but there is a space between them. Is there anyway to get rid of this space?
StringBuilder sb = new StringBuilder();
int characterCode;
characterCode = Convert.ToInt32("2758", 16);
sb.Append((char)characterCode);
characterCode = Convert.ToInt32("25c4", 16);
sb.Append((char)characterCode);
If you examine sb, you will see that it has Length of 2. There is no space between the characters.
I think the issue is that you wish the “on” pixels of the 2 characters were closer to each other so the 2 “characters” look more “next to” each other, no?
Edit: Like you said, you can see if those 2 characters look any “closer” to each other in a different font.