DevOnlineTools

Text Case Converter

Instantly convert code identifiers and raw text between camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE, Title Case, lowercase, and UPPERCASE with live conversion.

devonlinetools://text/case-converter
⌘ + EnterRun / Format
Shortcuts Active
camelCase
userProfileSettingsData
PascalCase
UserProfileSettingsData
snake_case
user_profile_settings_data
kebab-case
user-profile-settings-data
CONSTANT_CASE
USER_PROFILE_SETTINGS_DATA
dot.case
user.profile.settings.data
path/case
user/profile/settings/data
Header-Case
User-Profile-Settings-Data
Title Case
User Profile Settings Data
Sentence case
User profile settings data
sPoNgEcAsE
uSeR PrOfIlE SeTtInGs_dAtA
lowercase
user profile settings data
UPPERCASE
USER PROFILE SETTINGS DATA

Frequently Asked Questions

What are naming conventions used for in programming?

camelCase is popular in JavaScript/TypeScript. snake_case is standard in Python and SQL columns. kebab-case is used in URLs and CSS classes. CONSTANT_CASE is standard for global constants and environment variables.