Case Converter
camelCase, snake_case, Title Case and six more.
Runs entirely in this tab. Nothing is uploaded.
Result
Frequently asked questions
What is the difference between Title and Sentence case?+
Title Case capitalises every word. Sentence case capitalises only the first word of each sentence.
What is the difference between camelCase and PascalCase?+
Both join the words together with no spaces. camelCase leaves the first word lowercase — myVariableName — while PascalCase capitalises it too: MyVariableName. The usual convention is PascalCase for class and type names, camelCase for variables and functions.
How does it decide where one word ends and the next begins?+
It splits on spaces, underscores, hyphens and full stops, and it also breaks where a lowercase letter or digit is followed by a capital. So my-variable, my_variable and myVariable all resolve to the same two words.
Does it keep acronyms like NASA intact?+
No. Title, Pascal and camel styles lowercase the remainder of each word, so NASA comes out as Nasa. Working out which capitals are an acronym and which are a typo is guesswork often enough that being predictable is the better trade.
Tools that pair with Case Converter
- Base64 Encode / DecodeConvert text to Base64 and back, UTF-8 safe.
- JSON FormatterFormat, minify, validate and sort JSON keys.
- Hash GeneratorSHA-256, SHA-1, SHA-384 and SHA-512 digests.
- UUID GeneratorGenerate v4 UUIDs, one or fifty at a time.
- URL Encode / DecodePercent-encode URLs and query strings, or decode them.
- Timestamp ConverterUnix timestamps to dates and back, seconds or milliseconds.