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

  • SEARCH
  • Home
  • 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 6965169
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:01:18+00:00 2026-05-27T16:01:18+00:00

Is there any way to prevent Ruby’s JSON.pretty_generate() method from escaping a Unicode character?

  • 0

Is there any way to prevent Ruby’s JSON.pretty_generate() method from escaping a Unicode character?

I have a JSON object as follows:

my_hash = {"my_str" : "\u0423"};

Running JSON.pretty_generate(my_hash) returns the value as being \\u0423.

Is there any way to prevent this behaviour?

  • 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-05-27T16:01:19+00:00Added an answer on May 27, 2026 at 4:01 pm

    In your question you have a string of 6 unicode characters "\", "u", "0", "4", "2", "3" (my_hash = { "my_str" => '\u0423' }), not a string consisting of 1 "У" character ("\u0423", note double quotes).

    According to RFC 4627, paragraph 2.5, backslash character in JSON string must be escaped, this is why your get double backslash from JSON.pretty_generate.

    Alternatively, there are two-character sequence escape
    representations of some popular characters. So, for example, a
    string containing only a single reverse solidus character may be
    represented more compactly as "\\".

    char = unescaped /
           escape (...
               %x5C /          ; \    reverse solidus U+005C
    
    escape = %x5C              ; \
    

    Thus JSON ruby gem escape this character internally and there is no way to alter this behavior by parametrizing JSON or JSON.pretty_generate.

    If you are interested in JSON gem implementation details – it defines internal mapping hash with explicit mapping of ” char:

    module JSON
        MAP = {
            ...
            '\\'  =>  '\\\\'
    

    I took this code from a pure ruby variant of JSON gem gem install json_pure (note that there are also C extension variant that is distributed by gem install json).

    Conclusion: If you need to unescape backslash after JSON genaration you need to implement it in your application logic, like in the code above:

    my_hash = { "my_str" => '\u0423' }
    # => {"my_str"=>"\\u0423"}
    
    json = JSON.pretty_generate(my_hash)
    # => "{\n  \"my_str\": \"\\\\u0423\"\n}"
    
    res = json.gsub "\\\\", "\\"
    # => "{\n  \"my_str\": \"\\u0423\"\n}"
    

    Hope this helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way to prevent the doInBackground method/thread of an AsyncTask from starting
Is there any way to prevent Silverlight/RIA Services from converting a datetime object on
Is there any way to prevent Visual Studio from creating a VSMacros80 folder in
Is there any way to hide or encrypt JavaScript code to prevent people from
Is there any way to prevent a click from an <a> triggering delegated click
Is there any way to prevent o.GetType() from throwing an exception when called on
Is there any way to prevent users from copying content from website and display
Is there any way to prevent the Text/HTML Module in DNN from adding tags
is there any way to prevent the WindowsForm button control from performing a line
Is there any way to prevent prevent a custom tool from running or remove

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.