toText() - Convert Numbers to Bengali Text 
            
              Enter Number: 
               
            
            
            Result: 
            দশ লাখ টাকা
            Code: 
            
              toText(1000000) // "দশ লাখ টাকা"
            
           
         
        
        
          
            toBanglaMoney() - Format Currency with Commas 
            
              Enter Number: 
               
            
            
              
                 
                Show Currency Symbol 
              
              
                Currency Symbol: 
                
                  ৳ (Bengali Taka) 
                  BDT 
                  ₹ (Rupee) 
                  $ (Dollar) 
                 
              
              
                Negative Format: 
                
                  minus 
                  parenthesis 
                 
              
             
            Result: 
            ৳১০,০০,০০০
            Code: 
            
              toBanglaMoney(1000000) // "৳১০,০০,০০০"
            
           
         
        
        
          
            Side by Side Comparison 
            
              Enter Number: 
               
            
            
              
                toText() Output: 
                
                  পঁচাত্তর হাজার টাকা
                
               
              
                toBanglaMoney() Output: 
                
                  ৳৭৫,০০০
                
               
              
                Combined Usage: 
                
                  ৳৭৫,০০০ (পঁচাত্তর হাজার টাকা)
                
               
             
            Code Example: 
            
              const amount = 75000; const text = toText(amount); const money =
              toBanglaMoney(amount); const combined = `${money} (${text})`;