dot.case Converter โ Convert Text to dot.case
Published 2026-03-24 ยท convertcase.in
dot.case separates words with periods and uses all lowercase: "my.variable.name". It is less common than camelCase or snake_case but appears in specific contexts.
Try it now โ free instant conversion
No signup ยท No limits ยท Works on all devices
1What is dot.case?
"my.config.value", "app.version.number" โ words separated by periods, all lowercase.
2Where It's Used
Configuration files (Java properties: app.database.url), i18n translation keys (en.common.button.submit), version numbers (1.2.3), and some Python module paths.
3Converting
Take any text โ lowercase โ replace spaces with dots.
Frequently Asked Questions
What's the difference between dot.case and kebab-case?
dot.case uses periods. kebab-case uses hyphens. dot.case is not valid in URLs (periods have special meaning). Use kebab-case for URLs.