When the quoted_identifier option is set to on, you do not need to use double quotes around an identifier if the syntax of the statement requires that a quoted string contain an identifier.
set quoted_identifier on create table "1one" (c1 int)
select object_id ('1one')
----------------------- 896003192
create table "embedded""quote" (c1 int)
select object_id ('embedded"quote')