'How to loop specific Category menu from archive page WordPress?

I'm trying to loop a specific product category menu from the archive.php page and the category has 4 columns or as a 4th Tree How I can Loop it here in ul ?

   <ul><!-- 1-->
      <li><a> First tree</a>
         <ul><!-- 2-->
            <li><a>Second Tree</a>
               <ul><!-- 3-->
                  <li><a>Third Tree</a>
                     <ul><!-- 4-->
                        <li><a>Fourth Tree</a></li>
                     </ul>
                  </li>
               </ul>
            </li>
         </ul>
      </li>
   </ul>


Sources

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

Source: Stack Overflow

Solution Source