Programming & Formatting Cases
Common English Cases
Re-typing an entire document because the caps lock key was left on is tedious and incredibly inefficient. Our free case converter tool automates these grammar transformations directly in your browser.
UPPERCASE
EVERY LETTER IS CAPITALIZED.
Title Case
Major Words Are Capitalized.
Developer Specific Cases
If you are writing code, consistency in variable and function naming is absolutely crucial for maintainability across teams.
camelCase
The first word is entirely lowercase, and every subsequent word starts with a capital letter with no spaces between them.
myVariableNamesnake_case
All words are lowercase and completely separated by underscores. Used heavily in Python, Ruby, and Database Architectures.
my_variable_name