What is the difference between interpolated content and innerHTML?

The main difference between interpolated and innerHTML code is the behavior of code interpreted. Interpolated content is always escaped i.e, HTML isn’t interpreted and the browser displays angle brackets in the element’s text content. Where as in innerHTML binding, the content is interpreted i.e., the browser will convert < and > characters as HTMLEntities.