{"id":547,"date":"2021-01-01T13:14:52","date_gmt":"2021-01-01T13:14:52","guid":{"rendered":"https:\/\/webdevcode.com\/wp\/pylon\/live\/?page_id=547"},"modified":"2026-03-19T14:59:31","modified_gmt":"2026-03-19T09:29:31","slug":"loan-calculator","status":"publish","type":"page","link":"https:\/\/redfortcapital.com\/hi\/loan-calculator\/","title":{"rendered":"Loan Calculator"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"547\" class=\"elementor elementor-547\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-d91b65a pylon-column-stretched-none elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"d91b65a\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7069412\" data-id=\"7069412\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-210582d animated none elementor-widget elementor-widget-pylon_total_calculator_Widget\" data-id=\"210582d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pylon_total_calculator_Widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"row\">\n            <div class=\"col-md-7\">\n                <div class=\"loan-slider-box\">\n                    <div class=\"loan-main-heading block-title text-left\">\n                        <p class=\"small-title mb-0\">Monthly EMI<\/p>\n                        <h3 class=\"title-block w-500\">Loan Interest Calculator<\/h3>\n                    <\/div>    \n                    <div class=\"single-loan-slider\">\n                        <h4>Loan Amount<\/h4>\n                        <div id=\"pricipal-total-slide\"><\/div>\n                        <div class=\"single-loan-counter\">\n                            <span>Rs.<\/span>\n                            <h6 id=\"pricipal-id\"><\/h6>\n                        <\/div>\n                    <\/div>\n                    <div class=\"single-loan-slider\">\n                        <h4>Loan Months<\/h4>\n                        <div id=\"totalyear-loan-slide\"><\/div>\n                        <div class=\"single-loan-counter\">\n                            <h6 id=\"totalyear-id\"><\/h6>\n                            <span>Months<\/span>\n                        <\/div>\n                    <\/div>\n                    <div class=\"single-loan-slider\">\n                        <h4>Interest Rate<\/h4>\n                        <div id=\"interest-total-slide\"><\/div>\n                        <div class=\"single-loan-counter\">\n                            <h6 id=\"interest-id\"><\/h6>\n                            <span>%<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div> \n            <div class=\"col-md-5\">\n                <div id=\"loan-calculator\" data-interest-rate=\"15\" class=\"about-one__form about-total-loan-form\">\n                <h3>How Much You Need<\/h3>\n                <div class=\"about-one__form-content\">\n                        <p>\n                            <span>Monthly EMI<\/span>\n                            <b>Rs.<i id=\"emi\"><\/i><\/b>\n                        <\/p>\n                        <p>\n                            <span>Total Interest<\/span>\n                            <b>Rs.<i id=\"tbl_emi\"><\/i><\/b>\n                        <\/p>\n                        <p>\n                            <span>Total Amount Payable<\/span>\n                            <b>Rs.<i id=\"tbl_la\"><\/i><\/b>\n                        <\/p>                                                \n                        <a href=\"https:\/\/redfortcapital.com\/hi\/apply\/\" class=\"thm-btn\"  >\u0932\u094b\u0928 \u0915\u0947 \u0932\u093f\u090f \u0906\u0935\u0947\u0926\u0928 \u0915\u0930\u0947\u0902<\/a>\n                                                    <div class=\"additional-note\">\n                                <small>*These calculators are provided only as general self-help Planning Tools. Results depend on other factors.<\/small>\n                            <\/div>\n                                            <\/div>\n                <\/div>\n            <\/div>   \n        <\/div>            \n                <script>\n          jQuery( function( $ ) {\n\n            $ = jQuery;\n\n            $(\"#pricipal-total-slide\").slider({\n                range: \"min\",\n                min: 10000,\n                max: 250000000,\n                value: 10000000,\n                step: 100,\n                slide: function(event, ui) {\n                    $(\"#pricipal-id\").text(ui.value);\n                    loancalculate();\n                }\n            });\n            $(\"#pricipal-id\").text($(\"#pricipal-total-slide\").slider(\"value\"));\n\n            $(\"#totalyear-loan-slide\").slider({\n                range: \"min\",\n                min: 1,\n                max: 120,\n                value: 12,\n\n                slide: function(event, ui) {\n                    $(\"#totalyear-id\").text(ui.value);\n                    loancalculate();\n                }\n            });\n            $(\"#totalyear-id\").text($(\"#totalyear-loan-slide\").slider(\"value\"));\n\n            $(\"#interest-total-slide\").slider({\n                range: \"min\",\n                min: 1,\n                max: 30,\n                value: 18,\n                step: 0.01,\n                slide: function(event, ui) {\n                    $(\"#interest-id\").text(ui.value);\n                    loancalculate();\n                }\n            });\n            $(\"#interest-id\").text($(\"#interest-total-slide\").slider(\"value\"));\n\n            loancalculate();\n         });\n\n            function loancalculate()\n            {\n                var loanAmount =jQuery(\"#pricipal-id\").text();\n                var numberOfMonths =jQuery(\"#totalyear-id\").text();\n                var rateOfInterest=jQuery(\"#interest-id\").text();\n\n                var monthlyInterestRatio = (rateOfInterest\/100)\/12;\n\n                var top = Math.pow((1+monthlyInterestRatio),numberOfMonths);\n                var bottom = top -1;\n                var sp = top \/ bottom;\n                var emi = ((loanAmount * monthlyInterestRatio) * sp);\n                var full = numberOfMonths * emi;\n                var interest = full - loanAmount;\n                var int_pge =  (interest \/ full) * 100;\n                \/\/$(\"#tbl_int_pge\").html(int_pge.toFixed(2)+\" %\");\n                \/\/$(\"#tbl_loan_pge\").html((100-int_pge.toFixed(2))+\" %\");\n\n                var emi_str = emi.toFixed(2).toString().replace(\/,\/g, \"\").replace(\/\\B(?=(\\d{3})+(?!\\d))\/g, \",\");\n                var loanAmount_str = loanAmount.toString().replace(\/,\/g, \"\").replace(\/\\B(?=(\\d{3})+(?!\\d))\/g, \",\");\n                var full_str = full.toFixed(2).toString().replace(\/,\/g, \"\").replace(\/\\B(?=(\\d{3})+(?!\\d))\/g, \",\");\n                var int_str = interest.toFixed(2).toString().replace(\/,\/g, \"\").replace(\/\\B(?=(\\d{3})+(?!\\d))\/g, \",\");\n\n                jQuery(\"#emi\").html(emi_str);\n                jQuery(\"#tbl_emi\").html(int_str);\n                jQuery(\"#tbl_la\").html(full_str);\n            }\n        <\/script>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc7dc69 elementor-section-full_width elementor-section-content-space-between elementor-section-stretched pylon-column-stretched-none elementor-section-height-default elementor-section-height-default\" data-id=\"cc7dc69\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-71a3dcd\" data-id=\"71a3dcd\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-11a7586 elementor-widget elementor-widget-heading\" data-id=\"11a7586\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Business Loan EMI Calculator <\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-6ed26e0\" data-id=\"6ed26e0\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ebbd385 custom-content elementor-widget elementor-widget-text-editor\" data-id=\"ebbd385\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><a href=\"https:\/\/redfortcapital.com\/hi\/loan-for-small-business\/\">Business loans<\/a> play a crucial role in driving business growth and maintaining smooth operations. They provide the necessary capital for expansion,\u00a0<a href=\"https:\/\/redfortcapital.com\/hi\/working-capital-finance\/\" target=\"_blank\" rel=\"noopener\">working capital<\/a>\u00a0needs, and achieving long-term profitability. However, before availing a loan, it is essential to have clarity on your monthly financial commitments.<\/p><p>A <strong>Business Loan EMI Calculator<\/strong> helps you do exactly that. It enables you to estimate your monthly EMI in advance, allowing you to plan your cash flows and budget more effectively. By understanding your repayment obligations beforehand, you can ensure that your loan remains affordable and does not strain your business operations.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>Monthly EMI Loan Interest Calculator Loan Amount Rs. Loan Months Months Interest Rate % How Much You Need Monthly EMI Rs. Total Interest [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"class_list":["post-547","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Business Loan Calculator: EMI, Tenure &amp; Interest Estimates<\/title>\n<meta name=\"description\" content=\"Use Red Fort Capital\u2019s business loan calculator to quickly estimate your monthly EMI, interest payable, and loan tenure.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/redfortcapital.com\/hi\/loan-calculator\/\" \/>\n<meta property=\"og:locale\" content=\"hi_IN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Business Loan Calculator: EMI, Tenure &amp; Interest Estimates\" \/>\n<meta property=\"og:description\" content=\"Use Red Fort Capital\u2019s business loan calculator to quickly estimate your monthly EMI, interest payable, and loan tenure.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/redfortcapital.com\/hi\/loan-calculator\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-19T09:29:31+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u0905\u0928\u0941\u092e\u093e\u0928\u093f\u0924 \u092a\u0922\u093c\u0928\u0947 \u0915\u093e \u0938\u092e\u092f\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 \u092e\u093f\u0928\u091f\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/redfortcapital.com\\\/loan-calculator\\\/\",\"url\":\"https:\\\/\\\/redfortcapital.com\\\/loan-calculator\\\/\",\"name\":\"Business Loan Calculator: EMI, Tenure & Interest Estimates\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/redfortcapital.com\\\/#website\"},\"datePublished\":\"2021-01-01T13:14:52+00:00\",\"dateModified\":\"2026-03-19T09:29:31+00:00\",\"description\":\"Use Red Fort Capital\u2019s business loan calculator to quickly estimate your monthly EMI, interest payable, and loan tenure.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/redfortcapital.com\\\/loan-calculator\\\/#breadcrumb\"},\"inLanguage\":\"hi-IN\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/redfortcapital.com\\\/loan-calculator\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/redfortcapital.com\\\/loan-calculator\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/redfortcapital.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Loan Calculator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/redfortcapital.com\\\/#website\",\"url\":\"https:\\\/\\\/redfortcapital.com\\\/\",\"name\":\"Red Fort Capital\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/redfortcapital.com\\\/#organization\"},\"alternateName\":\"RedFortCapital\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/redfortcapital.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"hi-IN\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/redfortcapital.com\\\/#organization\",\"name\":\"Red Fort Capital\",\"alternateName\":\"RedFortCapital\",\"url\":\"https:\\\/\\\/redfortcapital.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"hi-IN\",\"@id\":\"https:\\\/\\\/redfortcapital.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/redfortcapital.com\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/cropped-REd_Fort_Logo_High_Res-removebg-preview-1.png\",\"contentUrl\":\"https:\\\/\\\/redfortcapital.com\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/cropped-REd_Fort_Logo_High_Res-removebg-preview-1.png\",\"width\":966,\"height\":151,\"caption\":\"Red Fort Capital\"},\"image\":{\"@id\":\"https:\\\/\\\/redfortcapital.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Business Loan Calculator: EMI, Tenure & Interest Estimates","description":"Use Red Fort Capital\u2019s business loan calculator to quickly estimate your monthly EMI, interest payable, and loan tenure.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/redfortcapital.com\/hi\/loan-calculator\/","og_locale":"hi_IN","og_type":"article","og_title":"Business Loan Calculator: EMI, Tenure & Interest Estimates","og_description":"Use Red Fort Capital\u2019s business loan calculator to quickly estimate your monthly EMI, interest payable, and loan tenure.","og_url":"https:\/\/redfortcapital.com\/hi\/loan-calculator\/","article_modified_time":"2026-03-19T09:29:31+00:00","twitter_card":"summary_large_image","twitter_misc":{"\u0905\u0928\u0941\u092e\u093e\u0928\u093f\u0924 \u092a\u0922\u093c\u0928\u0947 \u0915\u093e \u0938\u092e\u092f":"1 \u092e\u093f\u0928\u091f"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/redfortcapital.com\/loan-calculator\/","url":"https:\/\/redfortcapital.com\/loan-calculator\/","name":"Business Loan Calculator: EMI, Tenure & Interest Estimates","isPartOf":{"@id":"https:\/\/redfortcapital.com\/#website"},"datePublished":"2021-01-01T13:14:52+00:00","dateModified":"2026-03-19T09:29:31+00:00","description":"Use Red Fort Capital\u2019s business loan calculator to quickly estimate your monthly EMI, interest payable, and loan tenure.","breadcrumb":{"@id":"https:\/\/redfortcapital.com\/loan-calculator\/#breadcrumb"},"inLanguage":"hi-IN","potentialAction":[{"@type":"ReadAction","target":["https:\/\/redfortcapital.com\/loan-calculator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/redfortcapital.com\/loan-calculator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/redfortcapital.com\/"},{"@type":"ListItem","position":2,"name":"Loan Calculator"}]},{"@type":"WebSite","@id":"https:\/\/redfortcapital.com\/#website","url":"https:\/\/redfortcapital.com\/","name":"Red Fort Capital","description":"","publisher":{"@id":"https:\/\/redfortcapital.com\/#organization"},"alternateName":"RedFortCapital","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/redfortcapital.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"hi-IN"},{"@type":"Organization","@id":"https:\/\/redfortcapital.com\/#organization","name":"Red Fort Capital","alternateName":"RedFortCapital","url":"https:\/\/redfortcapital.com\/","logo":{"@type":"ImageObject","inLanguage":"hi-IN","@id":"https:\/\/redfortcapital.com\/#\/schema\/logo\/image\/","url":"https:\/\/redfortcapital.com\/wp-content\/uploads\/2022\/03\/cropped-REd_Fort_Logo_High_Res-removebg-preview-1.png","contentUrl":"https:\/\/redfortcapital.com\/wp-content\/uploads\/2022\/03\/cropped-REd_Fort_Logo_High_Res-removebg-preview-1.png","width":966,"height":151,"caption":"Red Fort Capital"},"image":{"@id":"https:\/\/redfortcapital.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/redfortcapital.com\/hi\/wp-json\/wp\/v2\/pages\/547","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/redfortcapital.com\/hi\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/redfortcapital.com\/hi\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/redfortcapital.com\/hi\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/redfortcapital.com\/hi\/wp-json\/wp\/v2\/comments?post=547"}],"version-history":[{"count":35,"href":"https:\/\/redfortcapital.com\/hi\/wp-json\/wp\/v2\/pages\/547\/revisions"}],"predecessor-version":[{"id":26171,"href":"https:\/\/redfortcapital.com\/hi\/wp-json\/wp\/v2\/pages\/547\/revisions\/26171"}],"wp:attachment":[{"href":"https:\/\/redfortcapital.com\/hi\/wp-json\/wp\/v2\/media?parent=547"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}