QuizOxa Tools
Back to all tools
Text

Free Online Text Case Converter

Quickly transform any text between multiple case formats. Whether you need to convert a heading to Title Case, format a variable name to camelCase, or convert a CSS class to kebab-case, this tool handles all common text case transformations with a single click. Supports 8 different case formats used in writing, programming, and web development.

Common questions

What is the difference between camelCase and PascalCase?

camelCase starts with a lowercase letter and capitalizes each subsequent word (e.g., 'myVariableName'). PascalCase capitalizes every word including the first (e.g., 'MyClassName'). camelCase is commonly used for variables and functions, while PascalCase is standard for class names.

When should I use snake_case vs kebab-case?

snake_case (words_separated_by_underscores) is common in Python and database column names. kebab-case (words-separated-by-hyphens) is used in CSS class names, URL slugs, and HTML attributes. Both improve readability for multi-word identifiers.

Does the converter handle accented characters?

Yes. The case converter properly handles accented and international characters (like é, ñ, ü) using JavaScript's built-in Unicode-aware string methods.