For example...
user/view/?id=324gijsdfi3h25o1
I can str() it...but...
How can I find it up by string?
You can construct a new ObjectId using the string. This example uses the MongoDB console:
db.users.find({ _id: ObjectId("4cdfb11e1f3c000000007822") })
I can't tell from your question which language driver you are using (if any at all), but most drivers also support this functionality.
You should NOT convert the ObjectId in the database to a string, and then compare it to another string. If you'd do this, MongoDB cannot use the _id index and it'll have to scan all the documents, resulting in poor query performance.