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 7765727
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T15:14:11+00:00 2026-06-01T15:14:11+00:00

In the MongoDB shell, if I type someDoc._id , Mongo replies with something like

  • 0

In the MongoDB shell, if I type someDoc._id, Mongo replies with something like ObjectId(4f6b83af44c75956279e7777). How is that string generated from the ObjectId bytes?

Links to the javascript source for this are welcome, as are links to the source for other drivers.

  • 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-01T15:14:13+00:00Added an answer on June 1, 2026 at 3:14 pm

    Looks like that comes from BSONElement::toString:

    case jstOID:
        s << "ObjectId('";
        s << __oid() << "')";
        break;
    

    And __oid() gives you a mongo::OID and the << operator calls str:

    inline StringBuilder& operator<< (StringBuilder& s, const OID& o) { return (s << o.str()); }
    

    and that just calls toHexLower on the raw bytes:

    string str() const { return toHexLower(data, 12); }
    

    Finally, toHexLower does this:

    inline string toHexLower(const void* inRaw, int len) {
        static const char hexchars[] = "0123456789abcdef";
    
        StringBuilder out;
        const char* in = reinterpret_cast<const char*>(inRaw);
        for (int i=0; i<len; ++i) {
            char c = in[i];
            char hi = hexchars[(c & 0xF0) >> 4];
            char lo = hexchars[(c & 0x0F)];
    
            out << hi << lo;
        }
    
        return out.str();
    }
    

    The stringification isn’t done in JavaScript, it is done in C++.

    The above uses the 2.0 branch of MongoDB but the (current) master is the same (or nearly so).

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

Sidebar

Related Questions

I have data something like this in mongodb { _id : ObjectId(4f0ee7310b09f7a254000001), createdAt :
If I try to run mongodb shell with the mongo command alone, I get:
The MongoDB shell prints binary data as a Base64-encoded string wrapped in what looks
In mongodb shell, I would like to retrieve the next elements for a query.
$ mongo MongoDB shell version: 2.0.0 connecting to: test > use admin switched to
I can run db.repairDatabase() from the mongodb shell but I can't find an example
Why does this work: # mongo dbname MongoDB shell version: 1.8.3 connecting to: nextmuni_staging
I'm trying to do something like this in MongoDB: wiki_db | +-- Programming --+
If I perform the following query in MongoDB shell, all is fine: db.users.find({location: {$near:
is mongodb appropriate for sites like stackoverflow?

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.