Back
Asciify Logo
Asciify

Record Separator

RS (Record Separator) is ASCII code point 30 (0x1E), Unicode U+001E. It is a C0 control character that delimited individual records within a group — the second-lowest tier in ASCII's four-level separator hierarchy: US (0x1F), RS (0x1E), GS (0x1D), FS (0x1C). On early batch systems and paper tape, 0x1E marked where one logical record ended and the next began without requiring fixed-length fields. It still appears in some Unix tooling — notably as the default delimiter in GNU sort's --zero-terminated mode alternatives and in certain flat-file EDI interchange formats. UTF-8 encodes it as the single byte 0x1E; Unicode classifies it as Cc (Control) with the alias RECORD SEPARATOR.

Symbol

Technical Details

Code Example

</>
char msg[] = "A\x1EB\x1EC";
char *p = strtok(msg, "\x1E"); // split records on RS
while (p) p = strtok(NULL, "\x1E"); // iterate each record

Frequently Asked Questions

  • RS (ASCII 30) separates individual records within a data group. In the ASCII separator hierarchy, it's like a row delimiter — each RS marks the boundary between one data record and the next, similar to how newlines separate rows in a CSV.

  • Newline (LF, ASCII 10) is whitespace with rendering behavior — it moves the cursor to a new line. RS is a pure structural delimiter with no visual effect. RS was designed to separate data records regardless of how they're displayed, making it cleaner for machine parsing.

  • Yes, more than you'd expect. The 'ASCII-delimited text' format uses RS between records and US between fields. Some logging systems use RS to separate log entries since it can't appear in normal text, avoiding the quoting nightmare CSVs create.

  • It's worth considering if you need a delimiter that won't collide with data content. Unlike commas, tabs, or newlines, RS (0x1E) almost never appears in real text. The downside is that your data won't be human-readable without tooling.

@workani&@alexluthor
Privacy & legal

Privacy

No accounts, no ads, no tracking cookies, and no cross-site tracking. The only analytics we keep are faceless — anonymous, aggregated counts of pages and searches, never tied to you. We store no IP addresses, set no tracking cookies, and build no profiles. Cloudflare hosts the site and handles requests for delivery and security.

Full privacy policy·Extension privacy·legal@asciify.dev

Attributions & licenses

Twemoji
© Twitter, Inc and other contributors · CC-BY 4.0
Noto Color Emoji
© Google · Apache 2.0
Fluent UI Emoji
© Microsoft · MIT
OpenMoji
© HfG Schwäbisch Gmünd · CC-BY-SA 4.0
Toss Face
© Viva Republica (Toss) · SIL OFL 1.1
JoyPixels
© JoyPixels Inc. · Free Limited Use License
SerenityOS Emoji
© The SerenityOS Developers · BSD-2-Clause
EmojiTwo
© EmojiTwo contributors · CC-BY 4.0
Apple Color Emoji
© Apple, Inc.
Facebook Emoji
© Meta Platforms, Inc.

Apple and Facebook emoji styles are proprietary and shown here solely for reference and comparison — a common-sense application of nominative-use / fair-use principles. asciify is not affiliated with, endorsed by, or sponsored by Apple, Inc., Meta Platforms, Inc., or any other rights holder listed above. If a rights holder requests removal of their emoji style from this site, it will be removed.

All other vendor emoji are reproduced for reference and comparison under their respective open licenses listed above.

Character names and code points from the Unicode® Standard. Unicode® and the Unicode Logo are registered trademarks of Unicode, Inc.

Privacy
© asciify.dev 2025-2026