rustbox / esp32c3-vgaterm

VGA Driver and Serial Terminal crates, with embedded applications in mind
MIT License
1 stars 0 forks source link

Strategize representing chars from `Character` that aren't in our font #10

Open dougli1sqrd opened 1 year ago

dougli1sqrd commented 1 year ago

Character here feels like it's an implementation of a fixed-length version of UTF-16 (i.e. it encodes all code points that fit into 16 bits, and skips the rest), so properly, this should probably be something like '\u{U+FFFD}' for the replacement character (e.g. https://en.wikipedia.org/wiki/Specials_(Unicode_block) ).

_Originally posted by @sethp in https://github.com/rustbox/esp32c3-vgaterm/pull/9#discussion_r1096123485_