Character escape codes
Factor handbook » The language » Syntax » Literals » Character and string syntax

Prev:"


Escape codeMeaning
\\\
\sa space
\ta tab
\na newline
\ra carriage return
\ba backspace (ASCII 8)
\va vertical tab (ASCII 11)
\fa form feed (ASCII 12)
\0a null byte (ASCII 0)
\eescape (ASCII 27)
\""
\xxxThe Unicode code point with hexadecimal number xx
\uxxxxxxThe Unicode code point with hexadecimal number xxxxxx
\u{xx}The Unicode code point with hexadecimal number xx
\u{name}The Unicode code point named name
\xxxan octal escape specified by one, two, or three octal digits