Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9145927
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T10:38:05+00:00 2026-06-17T10:38:05+00:00

Possible Duplicate: How do I decode a string with escaped unicode? I’m having a

  • 0

Possible Duplicate:
How do I decode a string with escaped unicode?

I’m having a javascript variable, in which i have stored a unicode character.

var value = "\\u53d3\\u5f13\\";

I’m adding the above value dynamically to a div, due to the extra back slash(\\u) proper unicode value is not shown. But if I Change it to single back slash that is \u instead of \\u . The unicode symbol is correctly shown.

In my environment I can not store the value with single back slash. As the response is from the server side..

Is there anyway to replace the double backslash with single backslash to show the proper unicode?

Thanks in Advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T10:38:07+00:00Added an answer on June 17, 2026 at 10:38 am

    It’s not about backslash anymore, it’s about what the string literally contains. If you just replaced backslashes, you would just end up with "u53d3u5f13". You can trivially unescape them though (if you don’t care that anything \uXXXX will be replaced):

    function unescapeUnicode( str ) {
        return str.replace( /\\u([a-fA-F0-9]{4})/g, function(g, m1) {
             return String.fromCharCode(parseInt(m1, 16));
        });
    }
    
    var value = "\\u53d3\\u5f13\\";
    unescapeUnicode(value);
    "叓弓\"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Decode obfuscated JavaScript Question: I have the following javascript code: var _0xe91d=[\x28\x35\x28\x24\x29\x7B\x24\x2E\x32\x77\x2E
Possible Duplicate: Decode HTML entities in Python string? I have a malformed string in
Possible Duplicate: Convert XML/HTML Entities into Unicode String in Python Decode HTML entities in
Possible Duplicate: unicode escapes in objective-c I have a LATIN1 string. Artîsté When I
Possible Duplicate: Decode HTML entities in Python string? I have a string full of
Possible Duplicate: how to decode this JSON string? When fetching data from another site
Possible Duplicate: HTML Entity Decode I want to convert this string <p>update this post</p>
Possible Duplicate: Java: How to decode HTML character entities in Java like HttpUtility.HtmlDecode? is
Possible Duplicate: How can I decode html characters in c#? I have characters incoming
Possible Duplicate: How to decode string to XML string in C# I'm calling a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.