java - Unassigned chars in the ascii spectrum? -
Are there any unsecured, invisible characters in the ESCSI spectrum, which I can safely use as a newline marker? The idea is to edit the Markdown in a WYSIWYG fashion (such as SO) to create a Java wordprocessor, but displays the folded marcundo (as opposed to SO) in the frame.
Each letter in ASCII (0x00 - 0x7F) () has been given a proper meaning. But why do not you just use \ n
(0x0a) as the new code?
Comments
Post a Comment