What does STX, SOH, and GS mean in Notepad++ output?

Upon reviewing the MIME source for an email (presumably containing international characters), I see stuff like this in Notepad++

enter image description here

I understand that CRLF is carriage return line feed, but what about the others? What do SOH, GS, and STX mean?

2 Answers

Notepad++ uses these symbols to represent control characters or non-printing characters.

Control character - Wikipedia

A control character or non-printing character is a code point (a number) in a character set, that does not represent a written symbol.

C0 and C1 control codes - Wikipedia

STX - Start of Text - First character of message text, and may be used to terminate the message heading.

SOH - Start of Header - First character of a message header.

GS - Group Separator - Can be used as delimiters to mark fields of data structures. If used for hierarchical levels, US is the lowest level (dividing plain-text data items), while RS, GS, and FS are of increasing level to divide groups made up of items of the level beneath it.

4

SOH is Start Of Header;

STX is Start of TeXt;

GS is Group Separator.

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like