AES Encryption Explained: How It Works and Why It Matters
Jun 23, 2026
Escape special regex characters so your text is treated as a literal in regular expressions.
Enter text above to see the escaped output.
| Character | Name | Escaped |
|---|---|---|
| . | Dot / Wildcard | \\. |
| ^ | Caret / Start anchor | \\^ |
| $ | Dollar / End anchor | \\$ |
| * | Asterisk / Quantifier (0+) | \\* |
| + | Plus / Quantifier (1+) | \\+ |
| ? | Question / Quantifier (0-1) | \\? |
| ( ) | Parentheses / Group | \\( \\) |
| [ ] | Brackets / Character class | \\[ \\] |
| { } | Braces / Quantifier range | \\{ \\} |
| \\ | Backslash / Escape | \\\\ |
| | | Pipe / Alternation | \\| |
Blog
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026