Get the Salesforce Org ID in Apex without query

 How can I get current salesforce org Id to check details about my org. 

Answer

String OrgId = UserInfo.getOrganizationId();
System.debug('OrgId: '+OrgId); 
Labels:
Join the conversation