Case Converter
Case Converter
Case converter for camelCase, snake_case, kebab-case, PascalCase, CONSTANT_CASE, and other naming styles used in variables, CSS classes, URLs, API routes, database fields, and docs.
Quick Start
Common Scenarios
Variable/function naming
convert phrases to camelCase/PascalCase/snake_case to standardize style
CSS/URLs
prefer kebab-case for class names and paths to improve readability
Database fields/constants
switch to snake_case or CONSTANT_CASE to match conventions
Files/paths
turn spaced names into kebab-case or path/case for cross‑platform friendliness
APIs/routes
REST paths in kebab- or snake-case; GraphQL fields in camelCase
Docs formatting
Title Case for headings; Sentence case for paragraph openers
Batch renaming
paste multiple names, convert in bulk, copy back
Before code review
normalize names to reduce diffs and rework
Extended workflow
snake_case converter, kebab-case converter, and PascalCase converter can be handled in the same review flow, so you can verify results before copying or exporting.
Format Reference
Usage Advice
Limitations & Compatibility
Privacy & Security
FAQ
camelCase (userName) fits variables or functions, while PascalCase (UserName) is common for classes and components
Symbols like @#$ are treated as separators, so hello@world becomes hello_world to keep naming consistent
Non‑Latin scripts and emoji stay untouched; only Latin words are converted (e.g., ‘测试 test’ → ‘测试 Test’)