A simple web tool that helps visualize escape sequences in any text, built with Hono framework.
\n (newline)\t (tab)\r (carriage return)\\ (backslash)\" (double quote)\' (single quote)\b (backspace)\f (form feed)\v (vertical tab)\0 (null character)\xHH (hex escape)\uHHHH (unicode escape)├── backend/
│ └── index.ts # Main Hono app entry point
├── frontend/
│ ├── index.html # Main HTML template
│ └── index.js # Frontend JavaScript
├── shared/
│ └── utils.ts # Shared types and utilities
└── README.md
Input: Hello\nWorld
Output:
Hello
World
Input: Tab:\tIndented
Output: Tab: Indented
Input: TypeScript definitions with escape sequences (like \n for newlines) will be properly rendered with actual newlines in the output panel.