Skip to main content

Constant Case Converter

Constant Case (also called SCREAMING_SNAKE_CASE) writes all letters in uppercase and joins words with underscores, producing identifiers like "MAX_RETRY_COUNT". This is the universal convention for constants in most programming languages and for environment variable names. Convert any phrase into a valid constant identifier instantly.

Characters 0
Words 0
Lines 0

Frequently Asked Questions

What is CONSTANT_CASE used for?

CONSTANT_CASE is used for named constants in Python, Java, JavaScript (const declarations), C/C++ #define macros, and environment variables in .env files.

How is it different from snake_case?

Constant Case is snake_case with all letters uppercased. snake_case uses all lowercase; CONSTANT_CASE uses all uppercase.