Environment variables universally use CONSTANT_CASE: 'DATABASE_URL', 'API_SECRET_KEY', 'PORT'. Operating systems, containers, and deployment platforms expect uppercase env vars, making CONSTANT_CASE the standard for configuration across all environments.
JavaScript and TypeScript constants follow this convention: 'const MAX_USERS = 1000', 'const DEFAULT_TIMEOUT = 5000'. While 'const' keyword declares immutability, CONSTANT_CASE naming reinforces that the value is a true constant, not just a non-reassignable variable.
Python globals and module-level constants use CONSTANT_CASE per PEP 8: 'PI = 3.14159', 'MAX_OVERFLOW = 100'. This distinguishes module constants from regular variables and functions which use lowercase snake_case.
Configuration files (JSON, YAML) often use CONSTANT_CASE for top-level keys: {MAX_CONNECTIONS: 50, TIMEOUT_SECONDS: 30}. This separates config constants from runtime data that might use camelCase or other conventions.