简体   繁体   中英

Are there different types of escape sequences?

I came across this answer

The answer listed two escape sequences:

\\033 - AaronDigulla referred this as octal type of escape sequence.

  • What type of escape sequence the other one \ is?
  • Are there different types of escape sequences? If yes are they listed somewhere?

Those starting with '\\u\u0026#39; are in unicode . Yes, there are some escape types. Off the top of my head, you can also use octal \\0... and hexadecimal \\0x... .

List of javascript escapes types:

  • Single character escape sequences
  • Octal escape sequences
  • Hexadecimal escape sequences
  • Unicode escape sequences
  • ECMAScript 6: Unicode code point escapes
  • Control escape sequences

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM