Introduction to js special character escape

  • 2020-03-26 23:04:53
  • OfStack

Escape of point: . = = > \ \ u002E

Escape of dollar sign: $= = > \ \ u0024

Escape of a power sign: ^ = = > \ \ u005E

Escape of the open curly brace: {= = > \ \ u007B

Escape of the left square bracket: [= = > \ \ u005B

Escape of the left parenthesis: (= = > \ \ u0028

Escape of vertical bar: | = = > \ \ u007C

Close bracket escape: ] = = > \ \ u005D

Escape of the close parenthesis: ) = = > \ \ u0029

Escape of asterisk: * = = > \ \ u002A

Escape of plus: + = = > \ \ u002B

Escape of question mark: ? = = > \ \ u003F

Escape of backslash: \ = = > \ \ u005C


Related articles: