# Character Frequency Counter

> Count how often each character appears in your text. Useful for cryptanalysis, language detection, and stats.

URL: https://uttir.com/character-frequency
Categories: text-tools, data-tools
Privacy: Counting happens entirely in your browser.

## About

Character frequency analysis counts how often each character appears in a piece of text. It is the first step in classical cryptanalysis (substitution ciphers leave statistical fingerprints), a quick way to detect what language a text is in, and a useful sanity check when generating sample or test data.

Paste any text and get a ranked list of every character with its count, sorted from most to least frequent. Toggle case sensitivity and whitespace handling to fine-tune the result.

## How to use

1. **Paste text** — Any length — works for sentences, paragraphs, or large corpora.
2. **Pick options** — Toggle case sensitivity and whether to include whitespace.
3. **Read the ranked list** — The most frequent character is at the top.

## Examples

### English text

In English, "e" is by far the most common letter.

Output:

```
e 12, t 9, a 8, o 7, i 6, n 6, s 6, h 5, r 5, …
```

### Cryptanalysis hint

A frequency table for ciphertext can crack simple substitution ciphers.

Output:

```
Most-frequent character matches a likely plaintext "e"
```

## FAQ

### Is whitespace counted by default?

Yes. Spaces, tabs, and newlines each count as their own characters. Turn on "ignore whitespace" if you only care about letters and digits.

### Why sort alphabetically when counts are equal?

So the result is stable across runs. Two characters with the same count will always appear in the same order.

### What is the most common letter in English?

E, at about 13% of all letters. T is second, A is third. The tool helps you find this kind of pattern in any text — useful for cryptography, compression, and text analysis.

## Related tools

- [Word Counter](https://uttir.com/word-counter) — Count words, characters, sentences, and paragraphs in your text instantly.
- [Character Counter](https://uttir.com/character-counter) — Count characters, words, lines, and UTF-8 bytes as you type.
- [Reading Time Calculator](https://uttir.com/reading-time) — Estimate how long it takes to read or speak a piece of text. Adjustable words-per-minute for fiction, non-fiction, or speech.

---

For the full HTML page with the live tool, visit https://uttir.com/character-frequency.
This file is the markdown rendering at https://uttir.com/character-frequency.md. See https://uttir.com/llms.txt for a site-wide summary.
