Best Free Case Converter
Kuchinjana mazita pakati UPPERCASE, zvidiki, Title, Sentence, camelCase, snake_case uye kebab-case - free.
Maitiro ekushanda
- Nhepfenyuro. Type kana paste the text you want to re-case.
- Kushandura. Tinya Kushandura Case kuti uite chero style pamwechete.
- Copy. Choose the case you need - from Title Case to snake_case - and copy it.
Nezve iyi chirongwa
Peta mazita emashoko uye uwane ese mazita emashoko akajairika panguva imwe chete: UPPERCASE, smallcase, Title Case, Sentence case, plus the developer styles camelCase, snake_case and kebab-case. Ichi chinochengeta fiddly basa rekunyorazve zita rechinyorwa, kuisa mazita emashoko akasvika mucaps, kana kuchinja zita relabel muvariable name. Each conversion is shown together so you can copy the one you want. There is no signing, and your text is converted from the request and never stored.
Chii vanhu vanoshandisa kuti
- Fix a heading that came in as ALL CAPS
- Kuchinjana kwelabels ku camelCase kana snake_case variable name
- Kuita kuti zita rirambe richienderana nezita rezita
- Kushandura phrase kuita kebab-case URL slug
Developer API
Automatize iyi chirongwa kubva yako pachako code. Send a POST request to the endpoint below and get the same result the web tool produces. It is rate-limited per IP and needs no signup - API keys for higher limits are coming.
https://best.free/api/tools/case-converter/
| Parameter | Mufananidzo | Anodarika | Nhoroondo |
|---|---|---|---|
text |
hello world from best free |
Yes |
curl -X POST https://best.free/api/tools/case-converter/ \
-H 'Content-Type: application/json' \
-d '{"text": "hello world from best free"}'
import requests
r = requests.post(
"https://best.free/api/tools/case-converter/",
json={"text": "hello world from best free"},
)
print(r.json())
const r = await fetch("https://best.free/api/tools/case-converter/", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ text: "hello world from best free" }),
});
const data = await r.json();
console.log(data);
Kutenda: JSON map of every case style for the input.
{"ok": true, "cases": {"UPPERCASE": "HELLO WORLD…", "snake_case": "hello_world…"}}