A fake French address generator produces correctly formatted addresses for France, following the local convention of street number before voie name and a five-digit code postal whose first two digits identify the department. It is meant for developers and testers exercising French-language forms and EU checkout flows.
How it works
The generator keeps the postal region and commune consistent:
- A commune is chosen, each carrying its two-digit department code.
- A voie type (Rue, Avenue, Boulevard, and so on) and name are picked, prefixed by a house number that may include
bisorter, written in French order. - A code postal is built as five digits: the first two come from the commune’s department code (
75Paris,13Marseille,69Lyon,33Bordeaux,59Lille), and the remaining three are random. - The commune name is appended after the code postal to form the standard line, and the department name is shown alongside.
Tips and notes
- The first two code postal digits are department-correct, satisfying the most common regional and length checks; the full code is not tied to a specific street.
- House numbers occasionally include
bisorter, mirroring real French addressing. - Generate a batch for seeding databases or import tests; everything runs locally with no network access.