Paste text or an identifier and see it in every common naming style at once — camelCase, snake_case, kebab-case, CONSTANT_CASE, Title Case and others.
By separators (space, _, -, ., /) and by camelCase boundaries, so XMLHttpRequest becomes xml/http/request.
kebab-case joins words with hyphens, snake_case with underscores; SCREAMING_SNAKE is uppercase snake.
Conventions vary: camelCase for JS variables, snake_case for Python, kebab-case for URLs/CSS, CONSTANT_CASE for constants.