Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

210
Views
How to stop converting Viram '।' symbol into code on blogger post?

I want to convert "." into "।" that is a Hindi full stop Symbol or Character

I am using the bellow script to convert "." into "।" which is the Hindi Stop symbol. I am using this code in a blogger post, This code gives me code like below

।

The code thrown on blogger Platform by this Following Script

When I am using Pipe | in place of ।, it works perfectly and there is no error. But Pipe "|" is not the right symbol for a full stop in Hindi.

Kindly Suggest converting "." into "।" for a blogger like similar code

Please Correct me If I am wrong. I Love Blogger but I don't have much knowledge of JavaScript and Jquery.

I have used some bellow code but it did not work

$('textarea').on("keyup", function(e) {
  var val = $(this).val();
  var str = val.replace('.', '।');
  $(this).val(str);
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<textarea></textarea>

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Please try a page with JUST this

<!doctype html>
<html dir='ltr' lang='en-GB'>

<head>
  <meta charset="UTF-8">
  <title>test page</title>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  <script>
    $(function() {
      $('textarea').on("keyup", function(e) {
        var val = $(this).val();
        var str = val.replace('.', '।');
        $(this).val(str);
      });
    });
  </script>
</head>

<body>
  <textarea></textarea>
</body>

</html>

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!