Case Converter
Convert text between camelCase, snake_case, kebab-case, PascalCase, UPPERCASE, lowercase, Title Case, and more.
Text
Bulk Convert:
Text InputLength: 0
Instant Casing Dashboard
camelCase
exampleText
PascalCase
ExampleText
snake_case
example_text
kebab-case
example-text
CONSTANT_CASE
EXAMPLE_TEXT
Title Case
Example Text
Sentence case
Example text
UPPERCASE
EXAMPLE TEXT
lowercase
example text
What is a Case Converter?
A Case Converter is a utility for developers, writers, and editors to quickly transform strings and blocks of text from one formatting style to another. In software engineering, converting between casing styles (like camelCase for JavaScript, snake_case for Python, and kebab-case for CSS) is a daily necessity.
Supported Case Conversions
- camelCase: First letter lowercase, subsequent word starting capitals (
helloWorld). Used in JS/TS. - PascalCase: All words capitalized with no spaces (
HelloWorld). Used for classes and react components. - snake_case: Words separated by underscores, all lowercase (
hello_world). Used in Python and DB fields. - kebab-case: Words separated by hyphens, all lowercase (
hello-world). Used in URLs and CSS classes. - CONSTANT_CASE: Words separated by underscores, all uppercase (
HELLO_WORLD). Used for environment variables. - Title Case: Capitalize the first letter of each word (
Hello World). Used for headers and titles. - Sentence Case: Capitalize the first letter of each sentence (
Hello world. It is nice.). Used for prose. - UPPERCASE: Convert all letters to capitals (
HELLO WORLD). - lowercase: Convert all letters to lowercase (
hello world).
How to Convert Text
- Enter your text or phrase in the Input Editor.
- Instant Board: For short phrases and variable naming, view the interactive cards below showing your text in all formats simultaneously. Click Copy on any card.
- Bulk Convert: To convert a large block of text in place, choose your target case format from the toolbar and click Convert In-Place.