The short answer is, there is no usable RAM there so you can't use any. If you have an MDA video card, it has only 4096 bytes of video memory, and for 80x25 screen, it uses 4000 bytes already, so there is 96 bytes that are not visible. If you need more memory then you need to add memory, either just plain memory cards that can provide memory, or an EMS card which can add paged memory.
The 8086 can only address 1024 kilobytes, and when making the 5150 PC, IBM decided to split that so that up to 640 kB of RAM is possible and the rest of the memory, 384 kB is reserved for system use and expansion cards.
Some non-IBM systems could allow to have more memory and start the expansion memory area later, but if they were compatible with PC graphics there could only be up to 64k or 96k more before the start of video memory area.
Typically there is only up to 640 kilobytes, either all of it on the motherboard or in some cases some of it in the expansion slots. You can't even assume you have the maximum amount installed.
So, assuming there is a video card installed, you can use it for reading and writing, but it would be slower to read and write than main memory and everything you store there will be visible on screen, as that is the purpose of video memory. Only later cards such a Hercules, EGA, and VGA had more memory than was needed to show one page.
So if there are no special RAM cards that add general memory to the 384k reserved area, then there is no memory.
Typically, you would not be able to use the video memory in any meaningful way to store arbitrary data, and that memory would typically not be visible to DOS, not without tricks.
were there any IBM PC 8086 systems with more than 640K of RAM in use?
In 1985 my wife bought a KayPro 2000 laptop with 768K of RAM, which ran MS-DOS. I recall there was a 640K limit, but it was possible to use the extra memory as a RAM drive.
– Simon Crase Dec 24 '22 at 03:53MEMMAX.SYSto temporarily block the balance of low memory during system start and extend the chain of MCBs (memory control blocks) into high memory, marking the hole as an occupied block. Tested with 286-based PCs using C&T NEAT and also an SRAM memory extension card (128 or 256KB?) with configurable start address on an 8086-based Amstrad PC. Utility programs `MEMMAX.EXE and MEMUP.EXE to force programs into high memory – njuffa Dec 03 '23 at 19:13