Anirdesh Converter Link

These converters perform consonant-by-consonant mapping between Hindi and Gujarati Unicode text. It is important to note that these are converters, not translators ; they change the script (e.g., from Devanagari to Gujarati script) while keeping the original words intact.

If I were to propose a for the Anirdesh number base converter, here's a solid one:

Gujarati and Unicode Tabs for Microsoft Office Word - Anirdesh.com

function convertWithEndianness(value, fromBase, toBase, endianness = 'BE', bitWidth = 32) { // Convert to decimal first let decimal = parseInt(String(value), fromBase); // Convert to target base string let baseResult = decimal.toString(toBase).toUpperCase();