Symbol For Record Separator Symbol
␞ is the record separator symbol used to mark boundaries between records in technical text formats.
U+241E
The symbol ␞ is known as the record separator. It’s a technical character that helps indicate where one record ends and the next begins. Because it’s often handled as a control-style character, it’s most common in documentation, debugging, and data processing contexts.
Symbol For Record Separator Symbol Meaning
The record separator (␞) is a Unicode symbol for “record separation” used in technical and computer contexts. It can represent a delimiter that separates logical records within a larger stream of text or data. Unlike common punctuation, it may not display like normal text characters in every font or environment; it’s primarily intended for tooling, logs, parsers, and structured data handling. When you copy it into code or documents, it may be treated as a literal character or a visible placeholder, depending on the application. Its Unicode code point is U+241E, and it’s also represented in HTML and programming escapes for consistent usage across systems.
Common uses
- •Marking record boundaries in plain-text data dumps or logs
- •Documenting delimiters in specs for custom file or message formats
- •Annotating troubleshooting output when records are concatenated
- •Writing test cases for parsers that must handle record separation
- •Indicating logical “record end” in legacy text-processing workflows
Examples
␞ Record Separator Symbol
- ␞Record 1␞Record 2␞Record 3
- ␞UserID=101␞Name=Sam␞Status=Active
- ␞CSV-like export: rowA␞rowB␞rowC
- ␞Message stream: part1␞part2␞part3
- ␞Debug log: startRecord␞endRecord
Variations
Ready to copy
Technical codes
| Unicode | U+241E | |
| HTML Entity | ␞ | |
| HTML Code | ␞ | |
| CSS | \241E |
FAQ
What does the Symbol For Record Separator symbol mean?
The record separator (␞) is a Unicode symbol for “record separation” used in technical and computer contexts. It can represent a delimiter that separates logical records within a larger stream of text or data. Unlike common punctuation, it may not display like normal text characters in every font or environment; it’s primarily intended for tooling, logs, parsers, and structured data handling. When you copy it into code or documents, it may be treated as a literal character or a visible placeholder, depending on the application. Its Unicode code point is U+241E, and it’s also represented in HTML and programming escapes for consistent usage across systems.
What is ␞ called?
␞ is the “record separator” symbol (Unicode name: SYMBOL FOR RECORD SEPARATOR).
What is the Unicode code point for ␞?
The Unicode code point is U+241E.
How can I copy ␞ safely for use in code?
Use the literal character ␞ when supported, or use escapes like HTML ␞ or CSS \\241E / JavaScript \\u{241E}.
Will ␞ look the same in every app or font?
Not necessarily. Some environments may render it as a control-like glyph or a placeholder, since it’s a technical character.