DuckyTools
Home Text dot.case Converter

dot.case Converter Text

Turn any phrase into dot.case for config keys and namespaces.

dot.case Converter is a free online tool that turn any phrase into dot.case for config keys and namespaces. It runs entirely in your web browser using plain JavaScript, so files are processed on your own device and never uploaded to a server. There is no sign-up, no file size limit imposed by the site, no watermark and no paid tier.

Price
Free — no account, no quota, no watermark
Category
Text
Where it runs
In your browser, on your device
Files uploaded
None
Technology
plain JavaScript
Settings
None — it just works
Works offline
Yes, after the first visit

About dot.case Converter

dot.case joins lowercase words with full stops. It is the shape of Java package names, i18n translation keys, feature-flag identifiers and the dotted paths used to address nested configuration — `database.connection.pool.size`. The dot is doing real work in those systems: it denotes hierarchy, which is why the format survives where a flat separator would not.

How to use it

  1. Paste the text you want to run through dot.case converter.
  2. There is nothing to configure — the result updates as you type.

Under the hood

Runs onplain JavaScript — runs the whole thing

Questions

Where is dot.case actually used?

Java and Kotlin package names, Spring and Micronaut property files, i18n keys in most translation libraries, and log4j-style logger hierarchies. Anywhere a name needs to encode nesting.

Is it safe in a file name?

Technically yes, but every dot after the first looks like a nested extension to tooling, and files beginning with a dot are hidden on Unix. Prefer kebab-case for files.