Consider the letters in the picture below.
The first row shows the letters themselves, the second row numbers them and third row shows their unicode code point encoded as three hex UFT-8 bytes. For example, the letter 2 is DEVANAGARI LETTER MA with code point 0x92E (= 2350 decimal)
, which is encoded as three hex UTF-8 bytes: e0, a4, ae
.
My question is regarding the rendering of the specific connected letter such as (1). How is this rendering handled by the rendering system? The way we typically input this connected letter is by first entering letter 2, then letter 4 (indicating our intent to join this letter with the next one) and then letter 3. Then, the rendering system respects the joining action by erasing the vertical line in the letter 2 and overlaying the letter 4 right there. It is not clear to me that the font for both complete letter 2 and its vertical-line-erased-half (shown with the faint red oval) is available in the chosen font.
Can someone explain how this works?