|
| Related:
|
|
| Escape Sequence | Description | VB Constant | ASCII | Hex | Unicode |
|---|---|---|---|---|---|
\t | (Horizontal) Tab | vbTab | 011 | 09 | \u0009 |
\v | Vertical Tab | vbVerticalTab | |||
\n | New Line Feed (LF) | vbLf vbNewLine | 012 | 0A | \u000a |
\r | Carriage Return (CR) | vbCr | 015 | 0D | \u000d |
\f | Form Feed | vbFormFeed | 014 | 0C | \u000c |
\b | Backspace | vbBack | 010 | 08 | \u0008 |
\\ | Back slash (solidus) | - | 092 | 5C | \u005c |
\' | Single quote (grave accent) | - | 060 | 27 | \u0027 |
\" | Double quote | - | 148 | 22 | \u0022 |
\0 | null (C string terminator) | vbNullChar | - | \u0000 | |
\c | continuation (UNIX) | ||||
| null (Empty) string | vbNullString | - | - | ||
| infinity(INF) | - | 236 | \u221E \u8734 | ||
\a | New line break for CSS2 content |
PHP programs also need escaped dollars signs (which precede variable names), braces, and brackets (which have special meaning in PHP):
\$ \{ \} \[ \]
In DOS batch files, the character like the backslash in Linux is the carrot, which tells the command interpreter to see the next character as a conventional character. An example usage is this:
@echo off set username=josh echo ^<%username%@mail.com^> >> emaillist.txt
|
|
|
|
|
|
|