SSDs are divided into "blocks" rather than sectors. There would be no need to low-level format them as the purpose of this was to physically divide a hard-disk platter into logical sectors; by their construction this concept just doesn't exist for an SSD.
The sector on older hard disks were 512 bytes; more modern (Advanced Format) ones use 4K sectors. SSD blocks are, generally 4K. The block, or sector, is the smallest unit of information that can be accessed on a disk. So even if you save a file of only 1 byte the device driver writes 512 (or 4K) bytes to the device. This is further complicated by the fact that file systems use a minimum allocation size (called clusters by Windows, blocks by some other OSs) that is a multiple (normally more than x1) of the disks sector size.
Whatever storage device you use - hard disk or SSD - all modern file systems will waste any spare space in the last (OS) cluster or block allocated to the file. This is the minimum size that they can write/read on the disk. For all practical purposes you can take the size of this cluster to be 4K on a modern Windows PC.
It would, in theory, be possible to design a file system that used every last bit on a disk. No filesystem that I know is designed this way; I think the housekeeping involved would slow the disk down to an unacceptable degree. Nowadays, as far as disks are involved, speed is paramount; efficient use of space is just not necessary as the cost per GB is so low.
--------------------------------------------------------------
Proud to be "woke".