Nepali Text Tools

Nepali Unicode

Convert between Roman, Unicode Devanagari, and Preeti font — instantly in your browser.

Roman → Unicode 0 chars
Input
Output
Output will appear here…

REST API

Use the converter programmatically. No authentication required. Rate limit: 120 requests / minute per IP.

POST https://pradipsubedi1.com.np/api/convert.php
GET https://pradipsubedi1.com.np/api/convert.php?action=roman_to_unicode&text=namaste
ParameterTypeValues
actionstring (required) roman_to_unicode · preeti_to_unicode · unicode_to_roman
textstringText to convert (max 50,000 chars)
{ "action": "roman_to_unicode", "text": "namaste nepal" }
{ "success": true, "result": "नमस्ते नेपाल" }
const res  = await fetch('https://pradipsubedi1.com.np/api/convert.php', {
  method:  'POST',
  headers: { 'Content-Type': 'application/json' },
  body:    JSON.stringify({ action: 'roman_to_unicode', text: 'namaste' })
});
const data = await res.json();
console.log(data.result); // नमस्ते
Copied!