Prints escaped character in the form 'c'.
import mir.appender: scopedBuffer; auto w = scopedBuffer!char; w.print('щ'); w.print('\U0010FFFE'); assert(w.data == `'щ''\U0010FFFE'`);
See Implementation
Prints escaped character in the form 'c'.