Case Converter

Convert text between common casings: UPPER, lower, Title, snake_case, kebab-case, camelCase.

Monitor this automatically

NetTests can run this check on a schedule, preserve historical results, compare changes over time, and alert you the moment something breaks.

Start monitoring free → See all monitoring products

Frequently Asked Questions

When is each case convention used?

snake_case — Python variables, database column names, file names on Linux. camelCase — JavaScript variables and object properties, Java methods. PascalCase (Title Case without spaces) — class names in most languages. kebab-case — CSS class names, HTML attributes, URL slugs. UPPER_CASE — constants and environment variables.

Does the converter handle camelCase input?

Yes — when converting camelCase or PascalCase to snake/kebab, the tool detects transitions between lowercase and uppercase letters (e.g. helloWorldhello_world). Existing separators (spaces, hyphens, underscores) are also recognised and normalised regardless of input format.