What this CGPA to percentage calculator does
Students on India's 10-point CBCS grading scale frequently need to express a CGPA (Cumulative Grade Point Average) as a percentage — for job applications, higher-study admissions, or comparison against percentage-based cut-offs. This tool converts a CGPA on the 0–10 scale into an equivalent percentage using the linear formula your board or university prescribes, updating live as you type.
Because no single formula is universal, the calculator is scheme-selectable: you pick a board/university scheme (or enter a custom multiplier) rather than the tool silently hardcoding one transform. Knowing which scheme applies to you is the whole game — the same CGPA can map to noticeably different percentages.
The formula
Every documented scheme is a single linear (affine) transform:
Percentage = clamp( (CGPA × m) + c , 0 , 100 )
m is the scheme multiplier (percent per grade point) and c the offset (percentage points). The CGPA is first clamped to 0–10, then the affine transform is applied, then the output is clamped to 0–100 — because affine forms can go negative (VTU below a CGPA of 0.75) or, with a high custom multiplier, exceed 100. The same transform is used whether you enter a CGPA or a single-semester SGPA; only the input value differs.
The CBSE ×9.5 rule
The most-searched conversion is the CBSE/UGC rule, Percentage = CGPA × 9.5, which is the default here. CBSE labels the result an indicative percentage rather than an exact mark. The 9.5 multiplier was derived empirically: students in the top A1 grade band (91–100 marks) averaged roughly 95 actual marks, and 95 divided by the top grade point of 10 gives exactly 9.5. A direct consequence is that a perfect 10 CGPA maps to 95%, never 100%.
Scheme reference
The schemes below carry their correct attribution. Note in particular that the (CGPA − 0.75) × 10 formula is VTU's (2015/17/18 schemes), while Anna University and JNTU use a plain ×10 — a common mix-up.
| Scheme | Formula | m | c | CGPA 8.5 → % |
|---|---|---|---|---|
| CBSE / UGC | CGPA × 9.5 | 9.5 | 0 | 80.75% |
| Generic / Anna / JNTU | CGPA × 10 | 10 | 0 | 85% |
| VTU 2015/17/18 | (CGPA − 0.75) × 10 | 10 | -7.5 | 77.5% |
| Mumbai University | 7.1 × CGPA + 11 | 7.1 | 11 | 71.35% |
| GTU | CGPA × 8.8 | 8.8 | 0 | 74.8% |
VTU itself changes formula by scheme year: a −0.75 offset for the 2015/17/18 schemes versus a plain ×10 for the 2021/22 schemes — always confirm your scheme. Mumbai University officially repealed formula-based CGPA-to-percentage conversion effective 1 January 2026, replacing it with an opt-in certificate from raw marks, so the Mumbai scheme here reflects the historically cited formula, not current policy.
Worked examples
These are generated by the same engine that powers the calculator above, so the figures always match what the tool returns.
| CGPA | Scheme | Working | Percentage |
|---|---|---|---|
| 8.5 | CBSE / UGC | 8.5 × 9.5 | 80.75% |
| 8.5 | Generic ×10 | 8.5 × 10 | 85% |
| 8.5 | VTU 2015/17/18 | 8.5 × 10 − 7.5 | 77.5% |
| 8.5 | Mumbai University | 8.5 × 7.1 + 11 | 71.35% |
| 8.5 | GTU | 8.5 × 8.8 | 74.8% |
| 10 | CBSE / UGC | 10 × 9.5 | 95% |
Notice how an 8.5 CGPA lands anywhere from 71.35% to 85% depending on the scheme — that spread is exactly why you must use your own institution's rule, and why the official conversion certificate is the figure that counts.
Quick-reference conversion table
The table below covers CGPA 6.0–10.0 in 0.5 steps for the two most common schemes. All figures are produced by the same engine that powers the calculator. Use the calculator above for other schemes (VTU, GTU, Mumbai, custom) or for any CGPA not listed here.
| CGPA | CBSE / UGC (×9.5) | Generic / Anna (×10) |
|---|---|---|
| 6First Class | 57% | 60% |
| 6.5 | 61.75% | 65% |
| 7 | 66.5% | 70% |
| 7.5Distinction | 71.25% | 75% |
| 8 | 76% | 80% |
| 8.5 | 80.75% | 85% |
| 9 | 85.5% | 90% |
| 9.5 | 90.25% | 95% |
| 10 | 95% | 100% |
The percentage gap between the two schemes widens as CGPA rises: at 10.0 a ×9.5 gives 95% while ×10 gives 100%. Always confirm which scheme your institution uses before quoting a number.
Degree classifications
Indian universities broadly follow the UGC Choice Based Credit System (CBCS) classification on the 10-point scale. The CGPA thresholds below are the standard UGC CBCS bands; your institution's regulations may differ, and placement cut-offs can be stricter.
| Classification | CGPA (10-pt) | Approx. percentage | Typical condition |
|---|---|---|---|
| First Class with Distinction | ≥ 7.5 | ≥ 75% (generic) / ≥ 71.25% (CBSE) | No backlogs (per UGC CBCS guideline) |
| First Class | ≥ 6.0 | ≥ 60% (generic) / ≥ 57% (CBSE) | Up to 2 backlogs at some institutions |
| Second Class | ≥ 5.0 | ≥ 50% (generic) / ≥ 47.5% (CBSE) | |
| Pass Class | ≥ 4.0 | ≥ 40% (generic) / ≥ 38% (CBSE) |
The percentage equivalents in the table assume either a ×10 or a ×9.5 multiplier — they are indicative. For example, some universities define first class at 55% rather than 60%. Always check your own exam regulations for the exact threshold that governs your award.
Study-abroad note. If you need to report your academic performance on a 4.0 GPA scale for US or Canadian university applications, a common linear approximation is GPA = (CGPA ÷ 10) × 4. A CGPA of 8.0 maps to roughly 3.2, and a 9.0 to 3.6, on this scale. Bear in mind that official credential evaluation agencies such as WES (World Education Services) do not apply a single formula — they conduct a course-by-course analysis that accounts for your institution's grading norms. Use the approximation for personal planning only; your WES-evaluated transcript is the figure that matters for actual applications.
Edge cases the clamp handles
A negative offset can push a low CGPA below zero: under VTU, a CGPA of 0 gives a raw −7.5, which the calculator clamps up to 0% (VTU only becomes meaningful at CGPA ≥ 0.75, its zero-crossing). A positive offset sets a floor: under Mumbai, a CGPA of 0 surfaces the +11 intercept. At the top end, a direct ×10 reaches exactly 100% at a CGPA of 10, while CBSE ×9.5 caps at 95% by design. Inputs outside 0–10 are clamped to the scale before conversion, and a high custom multiplier is capped so the output can never exceed 100.
Common mistakes to avoid
- Using the wrong scheme. The (CGPA − 0.75) × 10 formula is VTU's, not a universal standard. Applying it to a CBSE or Mumbai University transcript gives a wrong result.
- Assuming ×9.5 is mandatory everywhere. CBSE/UGC recommend it, but Anna, JNTU, GTU and others use different multipliers. Check your own regulations.
- Submitting a calculator figure for official use. Admissions offices and employers require the percentage on your university's official conversion certificate. A calculator result is an estimate for personal planning only.
- Ignoring the scheme year. VTU uses a −0.75 offset for the 2015/17/18 schemes but a plain ×10 for the 2021/22 schemes. Confirm which scheme your transcript belongs to.
Frequently asked questions
How do I convert CGPA to percentage?+
Apply your board or university’s linear conversion: Percentage = (CGPA × m) + c, where m is the multiplier and c the offset set by your institution. The most common is the CBSE/UGC rule, Percentage = CGPA × 9.5, so a CGPA of 8.5 becomes 80.75%. Other schemes use CGPA × 10, (CGPA − 0.75) × 10, or 7.1 × CGPA + 11 — pick the one your institution uses.
Is CGPA × 9.5 the official CBSE formula?+
Yes. CBSE publishes “overall indicative percentage of marks = 9.5 × CGPA” and applies the same multiplier per subject (9.5 × subject grade point). It is labelled indicative because it estimates marks rather than reproducing the exact score on your statement. UGC also recommends ×9.5 as a general convention, which is why it is the default here.
Why is the CBSE multiplier 9.5 and not 10?+
CBSE derived it empirically. Students in the top A1 grade (91–100 marks) averaged about 95 actual marks, and 95 divided by the top grade point of 10 gives exactly 9.5. A side effect is that a perfect 10 CGPA maps to 95%, never 100%.
What is the difference between CGPA and percentage?+
CGPA is a Cumulative Grade Point Average — the credit-weighted average of your grade points across all semesters on a 10-point scale. Percentage is your marks expressed out of 100. CGPA summarises performance as a grade index; the conversion turns that index back into an approximate percentage for applications that ask for one.
Which CGPA to percentage formula should my university use?+
Use the formula printed in your own university’s regulations or marksheet. As a guide: CBSE schools and many UGC-following universities use ×9.5; Anna University, JNTU and VTU’s 2021/2022 schemes use ×10; VTU’s 2015/2017/2018 schemes use (CGPA − 0.75) × 10; GTU uses ×8.8; Mumbai University historically used 7.1 × CGPA + 11. When in doubt, ask your examination cell.
What is the VTU CGPA to percentage formula?+
For the 2015, 2017 and 2018 schemes, VTU’s official formula is Percentage = (CGPA − 0.75) × 10, the same as CGPA × 10 − 7.5. So a CGPA of 8.5 converts to 77.5%. VTU’s 2021 and 2022 schemes instead use a plain CGPA × 10, so confirm your scheme year and pick the matching option.
What percentage is an 8.5 CGPA?+
It depends on the scheme. Under CBSE ×9.5 it is 80.75%; under a direct ×10 it is 85%; under VTU’s (CGPA − 0.75) × 10 it is 77.5%; under GTU ×8.8 it is 74.8%; and under Mumbai’s 7.1 × CGPA + 11 it is 71.35%. There is no single right answer without knowing your institution’s rule.
Is the Mumbai University CGPA formula still valid?+
Probably not for new conversions. Mumbai University officially repealed formula-based CGPA-to-percentage conversion effective 1 January 2026, moving to an opt-in certificate generated from actual marks. The 7.1 × CGPA + 11 option here reflects the historically cited CBCS formula and is provided for legacy use only — verify current policy with your college.
What is the GTU CGPA to percentage formula?+
Gujarat Technological University uses Percentage = CGPA × 8.8. For example, a CGPA of 8.0 converts to 70.4%. The 8.8 multiplier is specific to GTU and should not be used for CBSE, Anna or VTU results.
Why does a perfect 10 CGPA not always give 100%?+
Because the multiplier may be below 10. Under CBSE’s ×9.5 a 10 CGPA caps at 95%, and under GTU’s ×8.8 it caps at 88%. Only a direct ×10 reaches exactly 100%. This is by design, not a calculator error.
Can I enter my own conversion multiplier?+
Yes. Choose the Custom option and enter the multiplier printed in your university’s regulations. For example, a multiplier of 9.0 turns a CGPA of 7.5 into 67.5%. Use the exact value from your official rules — the calculator clamps the result to 100% so an unusually high multiplier can’t overflow.
Is this CGPA conversion accepted for jobs and admissions?+
Treat it as an estimate only. For admissions, scholarships, government jobs or higher studies, the authoritative figure is the percentage on your official transcript or a conversion certificate from your university registrar. Always submit that document rather than a calculator result.
What CGPA do I need for first class?+
Under the UGC Choice Based Credit System (CBCS) on the standard 10-point scale, a CGPA of 6.0 or above qualifies as First Class. In percentage terms, 6.0 CGPA converts to 57% (CBSE ×9.5) or 60% (generic ×10), which is why most institutions use 60% as the first-class cutoff. Individual universities can set their own threshold, so check your own regulations.
What CGPA is required for distinction?+
Under the UGC CBCS framework, First Class with Distinction requires a CGPA of 7.5 or above and no backlogs. On the CBSE ×9.5 scale a 7.5 CGPA converts to 71.25%, and on a direct ×10 scheme it converts to 75%. Many institutions set 75% as the distinction cutoff, which is why 7.5 CGPA is the widely cited threshold. Some universities require as high as 8.0 CGPA, so confirm with your registrar.
How do I convert my Indian CGPA to a 4.0 GPA scale for a study-abroad application?+
A common linear approximation is GPA = (CGPA / 10) × 4. For example, a CGPA of 8.0 maps to roughly 3.2 on a 4.0 scale. However, official evaluation agencies such as WES (World Education Services) do not use a single formula -- they conduct a course-by-course analysis that factors in your institution's grading norms and academic reputation. Use the linear formula only for your own planning; submit the WES (or equivalent) evaluated transcript for actual applications.
Sources
- VTU — official "CGPA Standard Formula": Percentage = (CGPA − 0.75) × 10 (2015/17/18 schemes)
- iCBSE — CBSE official formula: overall indicative percentage of marks = 9.5 × CGPA (derived empirically from A1-grade students averaging ~95 marks)
- OpenEducat — CGPA to percentage in India: UGC-recommended CGPA × 9.5; CBSE × 9.5; VTU/Anna/JNTU × 10; Mumbai 7.1 × CGPA + 11
- Edvoy — Anna University CGPA × 10 (R-2013/2017/2021); GTU CGPA × 8.8; the (CGPA − 0.5) × 10 figure is a UGC general guideline, not Anna University’s rule
- Edvoy — Mumbai University CBCS Percentage = (7.1 × CGPA) + 11; formula-based conversion officially repealed effective 1 January 2026
Formula and data last reviewed by the TheCalculatorVault team on 26 June 2026. Figures are for general information, not professional advice.
Related calculators
CBSE percentage calculator for Class 10 & 12: convert marks to percentage, CGPA to percentage (×9.5) and back, with subject-wise grades and best-of-five.
SGPA to %Convert SGPA or CGPA to percentage with your university’s formula — VTU (SGPA − 0.75) × 10, direct × 10, CBSE × 9.5, Mumbai 7.1 × SGPA + 11, or a custom multiplier and offset.
% to CGPAConvert percentage to CGPA with your board or university’s formula — CBSE/UGC ÷ 9.5, generic ÷ 10, VTU ÷ 10 + 0.75, Mumbai (Percentage − 11) ÷ 7.1, GTU ÷ 8.8, or a custom multiplier.