usv 0.19.1

USV: Unicode Separated Values (USV) for data markup. This is for spreadsheets, databases, content management, and more. This builds on ASCII Separated Values (ASV) and contrasts with Comma Separated Values (CSV).
Documentation
pub const UNIT_SEPARATOR_NAME: &str = "Unit Separator (US)";
pub const UNIT_SEPARATOR_BRACE: &str = "{US}";
pub const UNIT_SEPARATOR_CONTROL: &str = "\u{001F}";
pub const UNIT_SEPARATOR_SYMBOL: &str = "␟";

pub const RECORD_SEPARATOR_NAME: &str = "Record Separator (RS)";
pub const RECORD_SEPARATOR_BRACE: &str = "{RS}";
pub const RECORD_SEPARATOR_CONTROL: &str = "\u{001E}";
pub const RECORD_SEPARATOR_SYMBOL: &str = "␞";

pub const GROUP_SEPARATOR_NAME: &str = "Group Separator (GS)";
pub const GROUP_SEPARATOR_BRACE: &str = "{GS}";
pub const GROUP_SEPARATOR_CONTROL: &str = "\u{001D}";
pub const GROUP_SEPARATOR_SYMBOL: &str = "␝";

pub const FILE_SEPARATOR_NAME: &str = "File Separator (FS)";
pub const FILE_SEPARATOR_BRACE: &str = "{FS}";
pub const FILE_SEPARATOR_CONTROL: &str = "\u{001C}";
pub const FILE_SEPARATOR_SYMBOL: &str = "␜";

pub const ESCAPE_NAME: &str = "Escape (ESC)";
pub const ESCAPE_BRACE: &str = "{ESC}";
pub const ESCAPE_CONTROL: &str = "\u{001B}";
pub const ESCAPE_SYMBOL: &str = "␛";

pub const END_OF_TRANSMISSION_NAME: &str = "End Of Transmission (EOT)";
pub const END_OF_TRANSMISSION_BRACE: &str = "{EOT}";
pub const END_OF_TRANSMISSION_CONTROL: &str = "\u{0004}";
pub const END_OF_TRANSMISSION_SYMBOL: &str = "␄";