'Cannot download file name with date format dd/mm/yyyy in html

I need to download a file with the name format like this test-dd/mm/yyyy.jpg but when downloading every forward slash '/' replaced with underscores '_' in file name

sample code

<h1>The a download attribute</h1>

<p>Click on the image to download it:<p>
<a href="/images/myw3schoolsimage.jpg" download ="test-22/02/2022.jpg">
  <img src="/images/myw3schoolsimage.jpg" alt="W3Schools" width="104" height="142">
</a>

Note: The download attribute is not supported in IE or Edge (prior version 18), or in Safari (prior version 10.1).

actual value = test-22_02_2022.jpg

expected value = test-22/02/2022.jpg



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source